PROJECT(Orxonox) # create a few variables to simplify life SET(SRC_FILES orxonox.cc Universe.cpp loader/LevelLoader.cc xml/xmlParser.cc skybox/SkyBox.cc) SET(INC_FILES Universe.h loader/LevelLoader.h xml/xmlParser.h skybox/SkyBox.h) #Creates an executable ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES}) #Links the executable against OGRE and OIS TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} ${CEGUI_LIBRARIES} ${CEGUI_OGRE_LIBRARIES})