Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

fixed FindOGRE\nshould compile on tardis now

File size: 827 bytes
Line 
1PROJECT(Tutorial)
2
3SET(CMAKE_C_COMPILER CC="gcc-3.4 gcc-4.1.2 gcc" CXX="g++-3.4 g++-4.1.2 g++")
4
5SET(SRC_FILES src/main.cpp)
6
7SET(INC_FILES src/ExampleApplication.h  src/ExampleFrameListener.h  src/ExampleLoadingBar.h)
8
9#This sets where to look for "Find*.cmake" files
10SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
11#Performs the search and sets the variables
12FIND_PACKAGE(OGRE)
13FIND_PACKAGE(OIS)
14
15#Sets the search paths for the linking
16LINK_DIRECTORIES(${OGRE_LIB_DIR} ${OIS_LIB_DIR})
17#Sets the search path for include files
18INCLUDE_DIRECTORIES(${OGRE_INCLUDE_DIR} ${OIS_INCLUDE_DIR})
19
20#Creates an executable
21ADD_EXECUTABLE(main ${SRC_FILES} ${INC_FILES})
22#Links the executable against Ogre
23TARGET_LINK_LIBRARIES(main ${OGRE_LIBRARIES} ${OIS_LIBRARIES})
24
25#Sets the install path
26INSTALL(TARGETS main DESTINATION bin)
Note: See TracBrowser for help on using the repository browser.