diff --git a/standalone/CMakeLists.txt b/standalone/CMakeLists.txt index a00e2e9..2766144 100644 --- a/standalone/CMakeLists.txt +++ b/standalone/CMakeLists.txt @@ -26,6 +26,9 @@ CPMAddPackage( file(GLOB sources ${CMAKE_CURRENT_SOURCE_DIR}/source/*.cpp) add_executable(GreeterStandalone ${sources}) -set_target_properties(GreeterStandalone PROPERTIES CXX_STANDARD 17 COMPILE_FLAGS "-Wall -pedantic -Wextra") -set_target_properties(GreeterStandalone PROPERTIES OUTPUT_NAME "Greeter") +set_target_properties(GreeterStandalone PROPERTIES + CXX_STANDARD 17 + COMPILE_FLAGS "-Wall -pedantic -Wextra" + OUTPUT_NAME "Greeter" +) target_link_libraries(GreeterStandalone Greeter cxxopts)