Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/subprojects/collision_detection/Makefile.am @ 4615

Last change on this file since 4615 was 4615, checked in by patrick, 19 years ago

orxonox/trunk: modified the cd subproject, so it loads an md2 file now. the polygons are rendered black, so the bounding box is not viewable! Must render them in another color:)

File size: 1.9 KB
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4
5bin_PROGRAMS = collision
6
7collision_LDADD = $(MAINSRCDIR)/lib/physics/libORXphysics.a \
8                  $(MAINSRCDIR)/lib/graphics/importer/libORXimporter.a \
9                  $(MAINSRCDIR)/lib/collision_detection/libORXcd.a \
10                  $(MAINSRCDIR)/lib/event/libORXevent.a \
11                  $(MAINSRCDIR)/lib/sound/libORXsound.a \
12                  $(MAINSRCDIR)/lib/tinyxml/libtinyxml.a \
13                  $(MAINSRCDIR)/lib/newmat/libnewmat.a \
14                  $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) \
15                  -lpthread
16
17collision_CPPFLAGS =  -DGUI_MODULE \
18                      $(GTK2_CFLAGS) $(GTHREAD_CFLAGS) $(CURL_CFLAGS) $(MSBITFIELDS)
19
20collision_SOURCES= ../framework.cc \
21                   collision_detection.cc \
22                   $(MAINSRCDIR)/util/loading/load_param.cc \
23                   $(MAINSRCDIR)/lib/util/substring.cc \
24                   $(MAINSRCDIR)/lib/util/ini_parser.cc \
25                   $(MAINSRCDIR)/lib/graphics/light.cc \
26                   $(MAINSRCDIR)/lib/graphics/importer/md2Model.cc \
27                   $(MAINSRCDIR)/util/state.cc \
28                   $(MAINSRCDIR)/world_entities/camera.cc \
29                   $(MAINSRCDIR)/lib/graphics/graphics_engine.cc \
30                   $(MAINSRCDIR)/lib/lang/base_object.cc \
31                   $(MAINSRCDIR)/lib/math/vector.cc \
32                   $(MAINSRCDIR)/util/resource_manager.cc \
33                   $(MAINSRCDIR)/lib/graphics/text_engine.cc \
34                   $(MAINSRCDIR)/lib/coord/p_node.cc \
35                   $(MAINSRCDIR)/lib/coord/null_parent.cc \
36                   $(MAINSRCDIR)/lib/gui/gui_gtk.cc \
37                   $(MAINSRCDIR)/lib/newmat/include.h \
38                   $(MAINSRCDIR)/lib/newmat/newmat.h \
39                   $(MAINSRCDIR)/lib/newmat/newmatap.h \
40                   $(MAINSRCDIR)/lib/newmatio.h
Note: See TracBrowser for help on using the repository browser.