mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
CMake: Move Windows defines to Source/CMakeLists.txt
Messes up various Externals, like PortAudio.
This commit is contained in:
parent
4a422dffaa
commit
0475a85195
@ -244,16 +244,7 @@ else()
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||||
add_definitions(-DNOMINMAX)
|
|
||||||
add_definitions(-DUNICODE)
|
|
||||||
add_definitions(-D_UNICODE)
|
|
||||||
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
|
||||||
add_definitions(-D_WIN32_WINNT=0x0602)
|
|
||||||
add_definitions(-D_SECURE_SCL=0)
|
|
||||||
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
||||||
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
|
||||||
elseif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
||||||
# This doesn't play well with the packaging script that doesn't understand @rpath
|
# This doesn't play well with the packaging script that doesn't understand @rpath
|
||||||
set(CMAKE_MACOSX_RPATH OFF)
|
set(CMAKE_MACOSX_RPATH OFF)
|
||||||
|
|
||||||
|
@ -3,6 +3,17 @@ if(NOT FLAG_CXX_CXX14)
|
|||||||
check_and_add_flag(HAS_CXX1Y -std=c++1y)
|
check_and_add_flag(HAS_CXX1Y -std=c++1y)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||||||
|
add_definitions(-DNOMINMAX)
|
||||||
|
add_definitions(-DUNICODE)
|
||||||
|
add_definitions(-D_UNICODE)
|
||||||
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
||||||
|
add_definitions(-D_WIN32_WINNT=0x0602)
|
||||||
|
add_definitions(-D_SECURE_SCL=0)
|
||||||
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
||||||
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
||||||
|
endif()
|
||||||
|
|
||||||
# These aren't actually needed for C11/C++11
|
# These aren't actually needed for C11/C++11
|
||||||
# but some dependencies require them (LLVM, libav).
|
# but some dependencies require them (LLVM, libav).
|
||||||
add_definitions(-D__STDC_LIMIT_MACROS)
|
add_definitions(-D__STDC_LIMIT_MACROS)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user