cpp-console-game/cpp-console-game/CMakeLists.txt
2024-07-05 15:37:02 -04:00

41 lines
434 B
CMake

add_library(
Board
Board.hpp
Board.cpp
)
add_library(
GameState
GameState.hpp
GameState.cpp
)
add_library(
Player
Player.hpp
Player.cpp
)
add_executable(
cpp-console-game
main.cpp
)
target_link_libraries(
cpp-console-game PRIVATE
GameState
conio
eRPC
)
target_link_libraries(
GameState PRIVATE
Board
Player
RandomUtils
)
target_link_libraries(
Player PRIVATE
RandomUtils
)