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

make standalone windows compatible (#20)

Remove warning flags from standalone target as they only work for clang, gcc compilers
This commit is contained in:
Lars Melchior 2020-04-17 14:23:40 +02:00 committed by GitHub
parent f86f3a28d6
commit 09d3041f81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,6 @@ add_executable(GreeterStandalone ${sources})
set_target_properties(GreeterStandalone PROPERTIES set_target_properties(GreeterStandalone PROPERTIES
CXX_STANDARD 17 CXX_STANDARD 17
COMPILE_FLAGS "-Wall -pedantic -Wextra"
OUTPUT_NAME "Greeter" OUTPUT_NAME "Greeter"
) )