mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-16 17:53:27 +00:00
Fix CMAKE_BUILD_TYPE comparison
This commit is contained in:
parent
da630143b6
commit
e88a5c936f
@ -16,7 +16,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
||||
include_directories(/usr/local/include)
|
||||
endif()
|
||||
|
||||
if(${CMAKE_BUILD_TYPE} STREQUAL "Release" AND ${CMAKE_SYSTEM_NAME} STREQUAL Linux)
|
||||
if(${CMAKE_BUILD_TYPE} AND ${CMAKE_BUILD_TYPE} STREQUAL "Release" AND ${CMAKE_SYSTEM_NAME} STREQUAL Linux)
|
||||
option(USE_LD_GOLD "Link with GNU Gold and enable LTO" ON)
|
||||
else()
|
||||
option(USE_LD_GOLD "Link with GNU Gold and enable LTO" OFF)
|
||||
|
Loading…
x
Reference in New Issue
Block a user