Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/Tutorial/CMakeLists.txt @ 12

Last change on this file since 12 was 12, checked in by nicolasc, 17 years ago

initial CMakeLists.txt

File size: 230 bytes
Line 
1PROJECT (Tutorial)
2
3SET (MAIN_SRC main.cpp)
4
5ADD_EXECUTABLE (main ${MAIN_SRC})
6
7# find OGRE
8FIND_LIBRARY (OGRE_LIBS NAMES OGRE
9  PATH /usr/lib /usr/local/lib)
10IF (OGRE_LIBS)
11  TARGET_ADD_LIBRARY (main OGRE_LIBS)
12ENDIF (OGRE_LIBS)
Note: See TracBrowser for help on using the repository browser.