1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/rwgame/CMakeLists.txt
2016-07-28 14:46:48 +03:00

48 lines
669 B
CMake

add_executable(rwgame
main.cpp
RWGame.cpp
GameConfig.cpp
GameWindow.cpp
State.cpp
loadingstate.cpp
ingamestate.cpp
pausestate.cpp
menustate.cpp
debugstate.cpp
benchmarkstate.cpp
DrawUI.cpp
debug/HttpServer.cpp
debug/TcpSocket.cpp
)
include_directories(SYSTEM
${BULLET_INCLUDE_DIR}
${OPENAL_INCLUDE_DIR}
)
include_directories(
"${CMAKE_SOURCE_DIR}/rwengine/include"
)
target_link_libraries(rwgame
rwengine
inih
${OPENGL_LIBRARIES}
${BULLET_LIBRARIES}
${SDL2_LIBRARY}
)
if(MINGW)
add_definitions(-D _USE_MATH_DEFINES)
target_link_libraries(rwgame
iconv
mman
ws2_32)
endif()
install(TARGETS rwgame RUNTIME DESTINATION "${BIN_DIR}")