1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-03 07:30:53 +02:00

Respect CMAKE_DEBUG_POSTFIX setup

This commit is contained in:
Claus Klein 2023-07-31 07:27:00 +02:00
parent d81a42450c
commit 0bb3325679
3 changed files with 5 additions and 6 deletions

View file

@ -43,9 +43,6 @@ endif()
target_link_libraries(${PROJECT_NAME} Greeter::Greeter cxxopts::cxxopts)
set_target_properties(${PROJECT_NAME} PROPERTIES UNITY_BUILD ${OPTION_ENABLE_UNITY})
# TODO(CK): why is this used? This overrides the CMAKE_DEBUG_POSTFIX!
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME Greeter)
# --- Test it ---
enable_testing()