diff options
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4378ba6..4b13dd7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -112,6 +112,11 @@ elseif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -std=c99 -pedantic") endif() +# Compile as C++ under MSVC +if(MSVC) + set(CMAKE_C_FLAGS "/TP") +endif() + if(CMAKE_COMPILER_IS_MINGW) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -fgnu89-inline") endif(CMAKE_COMPILER_IS_MINGW) |