mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Added CMake configuration to suppress warnings about deprecated CMake versions being required by external dependencies
This commit is contained in:
parent
461bbe0e52
commit
5b59aca772
3
external/CMakeLists.txt
vendored
3
external/CMakeLists.txt
vendored
|
@ -9,6 +9,9 @@
|
|||
# This makes it possible to set options in subprojects.
|
||||
set (CMAKE_POLICY_DEFAULT_CMP0077 NEW)
|
||||
|
||||
# Suppress warnings about cmake_minimum_required() defining deprecated versions.
|
||||
set(CMAKE_WARN_DEPRECATED OFF CACHE BOOL "" FORCE)
|
||||
|
||||
if (WIN32)
|
||||
# On Windows the build type needs to match the main binary.
|
||||
if (CMAKE_BUILD_TYPE MATCHES Profiling)
|
||||
|
|
Loading…
Reference in a new issue