diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bca030..c030047 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,15 +32,15 @@ add_library(uno-game-lib src/server/UnoServer.cpp ) target_link_libraries(uno-game-lib - PRIVATE ftxui::screen - PRIVATE ftxui::dom - PRIVATE ftxui::component + PUBLIC ftxui::screen + PUBLIC ftxui::dom + PUBLIC ftxui::component ) target_link_libraries(uno-game-lib - PRIVATE nlohmann_json::nlohmann_json + PUBLIC nlohmann_json::nlohmann_json ) target_link_libraries(uno-game-lib - PRIVATE asio::asio + PUBLIC asio::asio ) add_executable(uno-client src/client/main.cpp) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index eb2aac0..170cf77 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -16,7 +16,7 @@ add_executable(uno-game-test ) target_link_libraries(uno-game-test - PUBLIC uno-game-lib + PRIVATE uno-game-lib ) target_link_libraries(uno-game-test PRIVATE GTest::gtest