source: proiecte/SIMEO/Simeo/src/SimeoEngine/CMakeLists.txt @ 167

Last change on this file since 167 was 167, checked in by (none), 14 years ago

Simeo: added final project and also older proof of concept code.

We used Git for version control, so look at the Git repo
in SIMEO/Simeo/ for more info.

File size: 933 bytes
Line 
1set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -g")
2
3link_libraries(
4        BulletDynamics
5        BulletCollision
6        LinearMath
7        glut
8        pthread
9)
10
11add_executable(SimeoEngine
12        Channel.cpp
13        MPIChannel.cpp
14
15        X.cpp
16        Sensor.cpp
17        Actuator.cpp
18        CommChannel.cpp
19
20        XProvider.cpp
21        SensorProvider.cpp
22        ActuatorProvider.cpp
23        CommChannelProvider.cpp
24
25        Environment.cpp
26        BulletObject.cpp
27
28        Agent.cpp
29        SimpleAgent.cpp
30
31        Master.cpp
32
33        Gui.cpp
34        LocalGui.cpp
35
36        GlutStuff.cpp
37        GLDebugFont.cpp
38        GLDebugDrawer.cpp
39        GL_ShapeDrawer.cpp
40        GlutDemoApplication.cpp
41
42        main.cpp
43)
44
45add_executable(SimeoEngineNoGui
46        Channel.cpp
47        MPIChannel.cpp
48
49        X.cpp
50        Sensor.cpp
51        Actuator.cpp
52        CommChannel.cpp
53
54        XProvider.cpp
55        SensorProvider.cpp
56        ActuatorProvider.cpp
57        CommChannelProvider.cpp
58
59        Environment.cpp
60        BulletObject.cpp
61
62        Agent.cpp
63        SimpleAgent.cpp
64
65        Master.cpp
66
67        Gui.cpp
68        RemoteGui.cpp
69
70        main.cpp
71)
72
73set_target_properties(SimeoEngineNoGui PROPERTIES COMPILE_FLAGS "-D USE_REMOTE_GUI=1")
Note: See TracBrowser for help on using the repository browser.