Skip to content
Snippets Groups Projects
Commit efda308a authored by Lars Bilke's avatar Lars Bilke
Browse files

[CMake] Removed duplicate Visual C++ compiler flag.

parent 5663f225
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ if (WIN32)
-DNOMINMAX # This fixes compile errors with std::numeric_limits<T>::min() / max()
)
# Sets warning level 3 and ignores some warnings
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /wd4290 /wd4267 /wd4996 /bigobj")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /wd4290 /wd4267 /wd4996")
# Allow big object files generated for template heavy code
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /ZI /Od /Ob0")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment