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:
parent
f59fc7f8e0
commit
2825693080
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue