diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-22 23:35:56 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-22 23:35:56 +0200 |
commit | e60367f8a5572f173b17cd127e85b20e2a1c59a7 (patch) | |
tree | ff7e4ffca3d69af50eb49d01cd70633f820afe83 /test/CMakeLists.txt | |
parent | dddd272bbeb599a533b0a2eafac561ede1797788 (diff) |
no need to link test/
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 2e3415bd..981a99a2 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,5 +6,6 @@ file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/test") link_libraries(${PROJECT_NAME}) link_libraries(Magnum::WindowlessWglApplication Magnum::Trade) -add_executable(${self} "${sources}" "../main/loader-impl.cpp") +#add_executable(${self} "${sources}" "../main/loader-impl.cpp") +add_library(${self} STATIC "${sources}" "../main/loader-impl.cpp") install(TARGETS ${self} RUNTIME DESTINATION bin) |