diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-08-01 20:05:12 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-08-01 20:05:12 +0200 |
| commit | 96817ee672d509f867b2e9f5608ee3beaf7ff91e (patch) | |
| tree | 10955534faa627f002259fb2ac5eae0b15384fd4 /tests/CMakeLists.txt | |
| parent | c1367e494e195999fc3e868ca16df2037ac6899a (diff) | |
| download | katja-96817ee672d509f867b2e9f5608ee3beaf7ff91e.tar.gz | |
Use private and public instead of legacy LINK_
Diffstat (limited to 'tests/CMakeLists.txt')
| -rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8276475..3555ece 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -13,7 +13,7 @@ foreach(test_source ${KATJA_TEST_SOURCES}) add_executable(${tester} ${test_source}) target_compile_definitions(${tester} PRIVATE "BOOST_TEST_DYN_LINK=1") - target_link_libraries(${tester} LINK_PRIVATE katja Boost::unit_test_framework) + target_link_libraries(${tester} PRIVATE katja Boost::unit_test_framework) add_test(NAME ${test_name} COMMAND ${tester}) endforeach() |
