Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/Makefile.am @ 9727

Last change on this file since 9727 was 9727, checked in by bensch, 18 years ago

orxonox/new_class_id: new Executor construct, that is much more typesafe, faster, and easier to extend…

Also changed the LoadParam process, and adapted ScriptEngine calls

Then at the end, some missing headers appeared, and appended them to all the cc-files again.

File size: 1.3 KB
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = \
5                libORXlibutil.a \
6                libORXexecutor.a
7
8libORXexecutor_a_SOURCES = \
9                executor/executor.cc \
10                executor/executor_functional.cc \
11                executor/executor_lua.cc
12
13libORXlibutil_a_SOURCES = \
14                substring.cc \
15                color.cc \
16                helper_functions.cc \
17                multi_type.cc \
18                \
19                loading/resource_manager.cc \
20                loading/resource.cc \
21                loading/game_loader.cc \
22                loading/load_param.cc \
23                loading/load_param_xml.cc \
24                loading/load_param_description.cc \
25                loading/factory.cc \
26                loading/fast_factory.cc \
27                \
28                filesys/file.cc \
29                filesys/directory.cc \
30                filesys/net_link.cc \
31                \
32                preferences.cc \
33                threading.cc \
34                timer.cc
35
36#               loading/dynamic_loader.cc
37
38
39noinst_HEADERS = \
40                substring.h \
41                multi_type.h \
42                color.h \
43                helper_functions.h \
44                executor/executor.h \
45                executor/executor_functional.h \
46                executor/executor_xml.h \
47                executor/executor_lua.h \
48                executor/functor_list.h \
49                \
50                filesys/file.h \
51                filesys/directory.h \
52                filesys/net_link.h \
53                \
54                preferences.h \
55                threading.h \
56                timer.h \
57                \
58                loading/resource_manager.h \
59                loading/resource.h \
60                loading/game_loader.h \
61                loading/load_param.h \
62                loading/load_param_xml.h \
63                loading/load_param_description.h \
64                loading/factory.h \
65                loading/fast_factory.h \
66                loading/dynamic_loader.h \
67                \
68                count_pointer.h \
69                list.h
Note: See TracBrowser for help on using the repository browser.