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

add empty lines

This commit is contained in:
Lars Melchior 2020-04-14 14:40:15 +02:00
parent b5931ba6ed
commit 8e77d3e9fc

View file

@ -25,10 +25,13 @@ CPMAddPackage(
# ---- Create standalone executable ----
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"
OUTPUT_NAME "Greeter"
)
target_link_libraries(GreeterStandalone Greeter cxxopts)