cmake: MSVC should always show all warnings

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2017-12-14 03:27:49 +01:00
parent afdf18b33b
commit 85bc910e6a

View file

@ -131,6 +131,7 @@ else()
"${PATH_OBSStudio}" "${PATH_OBSStudio}"
) )
add_definitions(-D_CRT_SECURE_NO_WARNINGS) add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif()
# All Warnings, Extra Warnings, Pedantic # All Warnings, Extra Warnings, Pedantic
if(MSVC) if(MSVC)
@ -144,7 +145,6 @@ else()
# Update if necessary # Update if necessary
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -pedantic") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -pedantic")
endif() endif()
endif()
################################################################################ ################################################################################
# Build # Build