aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-11 16:08:27 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-11 16:08:27 +0900
commit56a180e1f99ab8f0c5c2e5fb0d3ea326e5838888 (patch)
tree6549927bb3665e6ffe0c0ef99c31300e9f62d535
parent0f10255cf20df9415cbafa71b1d131af713f4b82 (diff)
downloadlibquotient-56a180e1f99ab8f0c5c2e5fb0d3ea326e5838888.tar.gz
libquotient-56a180e1f99ab8f0c5c2e5fb0d3ea326e5838888.zip
CMakeLists.txt: fixed typos
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index da38bc78..aba46a8b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,8 +38,8 @@ set(CMAKE_CXX_STANDARD 17)
if (MSVC)
add_compile_options(/EHsc /W4
- /Wd4100 /Wd4242 /Wd4245 /Wd4267 /Wd4365 /Wd4571 /Wd4625 /Wd4626 /Wd4820
- /Wd5026 /Wd5027)
+ /wd4100 /wd4242 /wd4245 /wd4267 /wd4365 /wd4571 /wd4625 /wd4626 /wd4820
+ /wd5026 /wd5027)
else()
foreach (FLAG all "" pedantic extra error=return-type no-unused-parameter no-gnu-zero-variadic-macro-arguments)
CHECK_CXX_COMPILER_FLAG("-W${FLAG}" WARN_${FLAG}_SUPPORTED)