mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-22 10:22:52 +01:00
14 lines
358 B
CMake
14 lines
358 B
CMake
add_executable(rwgame
|
|
main.cpp
|
|
ingamestate.cpp
|
|
pausestate.cpp
|
|
menustate.cpp
|
|
debugstate.cpp
|
|
)
|
|
|
|
include_directories("${CMAKE_SOURCE_DIR}/rwengine/include" /usr/include/bullet)
|
|
|
|
target_link_libraries( rwgame rwengine sfml-graphics sfml-window sfml-system GL GLEW BulletDynamics BulletCollision LinearMath )
|
|
|
|
install(TARGETS rwgame RUNTIME DESTINATION bin)
|