diff --git a/standalone/CMakeLists.txt b/standalone/CMakeLists.txt index dd4649f..665c057 100644 --- a/standalone/CMakeLists.txt +++ b/standalone/CMakeLists.txt @@ -25,9 +25,8 @@ file(GLOB sources CONFIGURE_DEPENDS source/*.cpp) add_executable(GreeterStandalone ${sources}) -# FIXME: WHY? CK -set_target_properties(GreeterStandalone OUTPUT_NAME "Greeter") - -target_compile_features(GreeterStandalone PUBLIC cxx_std_17) +# FIXME: WHY rename executable this way? CK +set_target_properties(GreeterStandalone CXX_STANDARD 17 OUTPUT_NAME "Greeter") +# target_compile_features(GreeterStandalone PUBLIC cxx_std_17) target_link_libraries(GreeterStandalone PRIVATE Greeter::Greeter cxxopts)