diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b5f217..1c46981 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -321,15 +321,13 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") foreach(t IN LISTS TOOL_EXES) target_compile_options(${t} PRIVATE ${WarningsEXE}) endforeach() -endif() -if(MINGW) +elseif(MINGW) foreach(t IN LISTS TOOL_EXES ITEMS ${PROJECT_NAME}) target_compile_definitions(${t} PRIVATE $,_DEBUG,NDEBUG>) target_compile_options(${t} PRIVATE -Wno-ignored-attributes) target_link_options(${t} PRIVATE -municode) endforeach() -endif() -if (CMAKE_CXX_COMPILER_ID MATCHES "MSVC") +elseif (CMAKE_CXX_COMPILER_ID MATCHES "MSVC") foreach(t IN LISTS TOOL_EXES ITEMS ${PROJECT_NAME}) target_compile_options(${t} PRIVATE /sdl /permissive- /JMC- /Zc:__cplusplus) endforeach()