diff options
author | saturneric <[email protected]> | 2024-11-30 22:01:05 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-30 22:01:05 +0000 |
commit | 9d082b3c9d351160d8d9c992a58ce1c66094e17c (patch) | |
tree | e2bf9b62f051514509c85865ab82d12f946f243d /src/test | |
parent | feat: improve app structure on windows (diff) | |
download | GpgFrontend-9d082b3c9d351160d8d9c992a58ce1c66094e17c.tar.gz GpgFrontend-9d082b3c9d351160d8d9c992a58ce1c66094e17c.zip |
fix: debug lib and runtime output dir should be same as release
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/CMakeLists.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index c9690c2a..7a8b9450 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -52,11 +52,4 @@ if(XCODE_BUILD) XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "${GPGFRONTEND_XOCDE_CODE_SIGN_IDENTITY}") endif() -if(${CMAKE_BUILD_TYPE} STREQUAL "Debug") - # lib output path - set_target_properties(gpgfrontend_test PROPERTIES - LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib - RUNTIME_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/lib) -endif() - add_test(AllTestsInGpgFrontend gpgfrontend_test) |