mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 07:55:07 +01:00
build: Ensure we default to Release build type. (#7080)
This commit is contained in:
parent
ef43776c7b
commit
6d4e462e42
@ -17,6 +17,12 @@ include(CMakeDependentOption)
|
|||||||
|
|
||||||
project(citra LANGUAGES C CXX ASM)
|
project(citra LANGUAGES C CXX ASM)
|
||||||
|
|
||||||
|
# Some submodules like to pick their own default build type if not specified.
|
||||||
|
# Make sure we default to Release build type always, unless the generator has custom types.
|
||||||
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
||||||
|
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
# Silence warnings on empty objects, for example when platform-specific code is #ifdef'd out.
|
# Silence warnings on empty objects, for example when platform-specific code is #ifdef'd out.
|
||||||
set(CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> Scr <TARGET> <LINK_FLAGS> <OBJECTS>")
|
set(CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> Scr <TARGET> <LINK_FLAGS> <OBJECTS>")
|
||||||
|
Loading…
Reference in New Issue
Block a user