Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/new_class_id: Taken out the old ResourceManager.
On the way, i had to desintegrate the old MD3-model loading process (via ResourceManager) MD3 is untouched, but also not loaded anymore neither from ResourceMangers nor from the WorldEntity

@patrick: MD3-ModelLoading class must be implemented… this should be quite easy, with the way MD3 is, and the new Resource-paradigm
cheers

File size: 1.6 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_substring.cc
10
11libORXlibutil_a_SOURCES = \
12                substring.cc \
13                color.cc \
14                helper_functions.cc \
15                multi_type.cc \
16                \
17                loading/resource_manager.cc \
18                loading/resource.cc \
19                loading/game_loader.cc \
20                loading/load_param.cc \
21                loading/load_param_description.cc \
22                loading/load_param_class_description.cc \
23                loading/factory.cc \
24                loading/fast_factory.cc \
25                \
26                filesys/file.cc \
27                filesys/directory.cc \
28                filesys/net_link.cc \
29                \
30                preferences.cc \
31                threading.cc \
32                timer.cc
33
34#               loading/dynamic_loader.cc
35
36
37noinst_HEADERS = \
38                substring.h \
39                multi_type.h \
40                color.h \
41                helper_functions.h \
42                \
43                \
44                executor/executor.h \
45                executor/executor_xml.h \
46                executor/executor_substring.h \
47                executor/executor_generic.h \
48                executor/executor_member.h \
49                executor/executor_const_member.h \
50                executor/executor_static.h \
51                \
52                executor/functor_list.h \
53                executor/functor_generic.h \
54                executor/functor_member.h \
55                executor/functor_const_member.h \
56                executor/functor_static.h \
57                \
58                \
59                filesys/file.h \
60                filesys/directory.h \
61                filesys/net_link.h \
62                \
63                preferences.h \
64                threading.h \
65                timer.h \
66                \
67                loading/resource_manager.h \
68                loading/resource.h \
69                loading/game_loader.h \
70                loading/load_param.h \
71                loading/load_param_xml.h \
72                loading/load_param_description.h \
73                loading/load_param_class_description.h \
74                loading/factory.h \
75                loading/fast_factory.h \
76                loading/dynamic_loader.h \
77                \
78                count_pointer.h \
79                list.h
Note: See TracBrowser for help on using the repository browser.