1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

fix syntax error

This commit is contained in:
ClausKlein 2021-02-07 00:01:40 +01:00
parent f59fc7f8e0
commit 2825693080

View file

@ -26,7 +26,7 @@ file(GLOB sources CONFIGURE_DEPENDS source/*.cpp)
add_executable(GreeterStandalone ${sources})
# FIXME: WHY rename executable this way? CK
set_target_properties(GreeterStandalone CXX_STANDARD 17 OUTPUT_NAME "Greeter")
set_target_properties(GreeterStandalone PROPERTIES CXX_STANDARD 17 OUTPUT_NAME "Greeter")
# target_compile_features(GreeterStandalone PUBLIC cxx_std_17)
target_link_libraries(GreeterStandalone PRIVATE Greeter::Greeter cxxopts)