1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/rwgame/CMakeLists.txt

99 lines
1.7 KiB
CMake
Raw Normal View History

configure_file("${CMAKE_CURRENT_SOURCE_DIR}/GitSHA1.cpp.in" "${CMAKE_CURRENT_BINARY_DIR}/GitSHA1.cpp" @ONLY)
add_library(librwgame STATIC
2017-10-26 01:01:57 +02:00
GitSHA1.h
"${CMAKE_CURRENT_BINARY_DIR}/GitSHA1.cpp"
RWConfig.inc
RWConfig.hpp
RWConfig.cpp
2017-10-26 01:01:57 +02:00
GameBase.hpp
GameBase.cpp
2018-08-30 03:00:39 +02:00
RWGame.hpp
2017-10-26 01:01:57 +02:00
RWGame.cpp
2018-08-30 03:00:39 +02:00
GameWindow.hpp
2017-10-26 01:01:57 +02:00
GameWindow.cpp
2018-12-20 20:31:14 +01:00
RWImGui.cpp
RWImGui.hpp
2018-10-29 14:52:18 +01:00
HUDDrawer.hpp
HUDDrawer.cpp
2017-10-26 01:01:57 +02:00
MenuSystem.hpp
MenuSystem.cpp
GameInput.hpp
GameInput.cpp
2018-08-30 03:00:39 +02:00
game.hpp
WindowIcon.hpp
StateManager.hpp
StateManager.cpp
State.hpp
State.cpp
2017-10-26 01:01:57 +02:00
states/LoadingState.hpp
states/LoadingState.cpp
states/IngameState.hpp
states/IngameState.cpp
states/PauseState.hpp
states/PauseState.cpp
states/MenuState.hpp
states/MenuState.cpp
states/DebugState.hpp
states/DebugState.cpp
states/BenchmarkState.hpp
states/BenchmarkState.cpp
)
2014-01-26 04:45:55 +01:00
openrw_target_apply_options(
TARGET librwgame
CORE
COVERAGE
2017-10-26 01:01:57 +02:00
)
set_target_properties(librwgame
PROPERTIES
OUTPUT_NAME "rwgame"
PREFIX "lib"
)
target_include_directories(librwgame
PUBLIC
2018-06-24 00:43:06 +02:00
"${CMAKE_CURRENT_SOURCE_DIR}"
)
target_link_libraries(librwgame
PUBLIC
openrw::interface
2017-10-26 01:01:57 +02:00
rwengine
2018-06-24 00:43:06 +02:00
Boost::program_options
SDL2::SDL2
)
2014-01-26 04:45:55 +01:00
2019-05-23 00:10:01 +02:00
target_compile_definitions(librwgame
PUBLIC
RW_IMGUI
)
target_link_libraries(librwgame
PUBLIC
imgui::sdl_gl3
)
2018-12-20 20:31:14 +01:00
add_executable(rwgame
main.cpp
)
target_link_libraries(rwgame
PRIVATE
librwgame
)
2018-09-01 18:23:10 +02:00
openrw_target_apply_options(
TARGET rwgame
CORE
COVERAGE
2018-09-01 18:23:10 +02:00
INSTALL INSTALL_PDB
)