Merge pull request #998
442adfb
cmake: define a default build type (redfish)
This commit is contained in:
commit
16e9dbc3f8
1 changed files with 5 additions and 0 deletions
|
@ -45,6 +45,11 @@ function (die msg)
|
||||||
message(FATAL_ERROR "${BoldRed}${msg}${ColourReset}")
|
message(FATAL_ERROR "${BoldRed}${msg}${ColourReset}")
|
||||||
endfunction ()
|
endfunction ()
|
||||||
|
|
||||||
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
|
||||||
|
message(STATUS "Setting default build type: ${CMAKE_BUILD_TYPE}")
|
||||||
|
endif()
|
||||||
|
|
||||||
# ARCH defines the target architecture, either by an explicit identifier or
|
# ARCH defines the target architecture, either by an explicit identifier or
|
||||||
# one of the following two keywords. By default, ARCH a value of 'native':
|
# one of the following two keywords. By default, ARCH a value of 'native':
|
||||||
# target arch = host arch, binary is not portable. When ARCH is set to the
|
# target arch = host arch, binary is not portable. When ARCH is set to the
|
||||||
|
|
Loading…
Reference in a new issue