Changeset 1224
- Timestamp:
- May 3, 2008, 5:47:19 PM (17 years ago)
- Location:
- code/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/audio/CMakeLists.txt
r1070 r1224 1 1 SET ( AUDIO_SRC_FILES 2 AudioBuffer.cc 2 3 AudioManager.cc 3 AudioBuffer.cc4 4 AudioSource.cc 5 5 AudioStream.cc -
code/trunk/src/core/CMakeLists.txt
r1219 r1224 1 1 SET(CORE_SRC_FILES 2 OrxonoxClass.cc3 2 BaseObject.cc 3 ClassTreeMask.cc 4 CommandExecutor.cc 5 ConfigFileManager.cc 6 ConfigValueContainer.cc 7 CoreSettings.cc 8 Error.cc 9 Executor.cc 4 10 Factory.cc 5 11 Identifier.cc 6 12 IdentifierDistributor.cc 13 InputBuffer.cc 7 14 InputHandler.cc 8 15 InputManager.cc 16 Language.cc 17 Loader.cc 9 18 MetaObjectList.cc 10 ConfigFileManager.cc11 ConfigValueContainer.cc12 Error.cc13 SignalHandler.cc14 CoreSettings.cc15 OutputHandler.cc16 Language.cc17 ClassTreeMask.cc18 Loader.cc19 Executor.cc20 XMLPort.cc21 19 Namespace.cc 22 20 NamespaceNode.cc 23 CommandExecutor.cc 24 InputBuffer.cc 21 OrxonoxClass.cc 22 OutputHandler.cc 23 Script.cc 24 SignalHandler.cc 25 TclBind.cc 25 26 Tickable.cc 26 Script.cc27 XMLPort.cc 27 28 tolua/tolua_bind.cc 28 #tolua/tolua_bind.h29 TclBind.cc30 29 ) 31 32 #SET_SOURCE_FILES_PROPERTIES(tolua/tolua_bind.h33 # PROPERTIES34 # OBJECT_DEPENDS tolua/tolua_bind.h35 # OBJECT_DEPENDS tolua/tolua_bind.cc36 # GENERATED true37 # HEADER_FILE_ONLY true38 #)39 30 40 31 GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION) … … 49 40 50 41 TARGET_LINK_LIBRARIES(core 51 cpptcl52 42 ${Lua_LIBRARIES} 53 43 ${OGRE_LIBRARIES} 44 cpptcl 54 45 tinyxml 55 46 tolualib -
code/trunk/src/orxonox/CMakeLists.txt
r1219 r1224 3 3 Main.cc 4 4 Orxonox.cc 5 5 6 console/InGameConsole.cc 6 # SpaceshipSteering.cc7 7 hud/HUD.cc 8 8 particle/ParticleInterface.cc 9 tolua/tolua_bind.cc 10 9 11 tools/BillboardSet.cc 10 12 tools/Light.cc 11 13 tools/Mesh.cc 12 14 tools/Timer.cc 15 13 16 objects/Ambient.cc 14 17 objects/Camera.cc 15 18 objects/Explosion.cc 16 # objects/Fighter.cc17 19 objects/Model.cc 18 20 objects/NPC.cc … … 20 22 objects/Skybox.cc 21 23 objects/SpaceShip.cc 22 # objects/SpaceshipSteeringObject.cc23 # objects/test1.cc24 # objects/test2.cc25 # objects/test3.cc26 24 objects/WorldEntity.cc 25 27 26 # objects/weapon/AmmunitionDump.cc 28 27 # objects/weapon/BarrelGun.cc … … 31 30 # objects/weapon/BulletManager.cc 32 31 # objects/weapon/WeaponStation.cc 33 tolua/tolua_bind.cc34 # tolua/tolua_bind.h35 32 ) 36 37 #SET_SOURCE_FILES_PROPERTIES(tolua/tolua_bind.h38 # PROPERTIES39 # OBJECT_DEPENDS tolua/tolua_bind.h40 # OBJECT_DEPENDS tolua/tolua_bind.cc41 # GENERATED true42 # HEADER_FILE_ONLY true43 #)44 33 45 34 GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION)
Note: See TracChangeset
for help on using the changeset viewer.