Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/CMakeLists.txt @ 164

Last change on this file since 164 was 164, checked in by nicolasc, 16 years ago

Brute force megre of xml branch

File size: 413 bytes
Line 
1PROJECT(Orxonox)
2
3# create a few variables to simplify life
4
5SET(SRC_FILES orxonox.cc loader/LevelLoader.cc xml/xmlParser.cc)
6SET(INC_FILES loader/LevelLoader.h xml/xmlParser.h)
7
8#Creates an executable
9ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES})
10#Links the executable against OGRE and OIS
11TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES})
12
Note: See TracBrowser for help on using the repository browser.