1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-10 04:42:38 +01:00
openrw/rwgame/CMakeLists.txt

15 lines
376 B
CMake
Raw Normal View History

2014-05-26 06:34:49 +02:00
add_executable(rwgame
main.cpp
2014-06-06 13:18:32 +02:00
loadingstate.cpp
2014-05-26 06:34:49 +02:00
ingamestate.cpp
pausestate.cpp
menustate.cpp
debugstate.cpp
2014-05-26 06:34:49 +02:00
)
2014-01-26 04:45:55 +01:00
2014-02-28 08:24:20 +01:00
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" /usr/include/bullet)
2014-01-26 04:45:55 +01:00
target_link_libraries( rwgame rwengine sfml-graphics sfml-window sfml-system GL GLEW BulletDynamics BulletCollision LinearMath )
install(TARGETS rwgame RUNTIME DESTINATION bin)