Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/tutorial/Tutorial/CMakeLists.txt @ 13

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

copied CMakeLists.txt

File size: 295 bytes
RevLine 
[12]1PROJECT (Tutorial)
2
[13]3SET (MAIN_SRC main.cpp ExampleApplication.h ExampleFrameListener.h ExampleLoadingBar.h )
[12]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.