Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/lang/Makefile.am @ 9672

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

orxonox/trunk: ClassList objectively implemented. This is not the fastest, but the most modular approach.
Now is the question of redundancy in code writing:
Should the ClassWriter explicitely declare a Class with superclasses, or should on runtime each object decide for itself, as it is done in BaseObject at the moment… questions questions questions…

File size: 423 bytes
RevLine 
[4291]1MAINSRCDIR=../..
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3493]3
[9668]4noinst_LIBRARIES = libORXlang.a
[4291]5
[9668]6libORXlang_a_SOURCES = \
7                base_object.cc \
8                class_list.cc \
9                new_class_id.cc \
10                new_object_list.cc
[4291]11
[9668]12noinst_HEADERS = \
13                base_object.h \
14                class_list.h \
15                new_class_id.h \
16                new_object_list.h
[9669]17
[9670]18
19
20
[9672]21bin_PROGRAMS = test_object_list
[9669]22
23test_object_list_SOURCES = \
24                test_object_list.cc
25
26test_object_list_LDADD = \
27                libORXlang.a
Note: See TracBrowser for help on using the repository browser.