mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
utils: Set cmake build type to default to Release.
Change-Id: Ie4e6aa326840cb1fbae0fe8d025e592e139d4508
This commit is contained in:
parent
8d462a1edd
commit
ae97d410c5
1 changed files with 4 additions and 0 deletions
|
|
@ -17,6 +17,10 @@ project(RockboxUtils)
|
|||
|
||||
set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
if (NOT CMAKE_BUILD_TYPE)
|
||||
message("-- CMAKE_BUILD_TYPE not set, assuming Release")
|
||||
set(CMAKE_BUILD_TYPE Release)
|
||||
endif()
|
||||
find_program(CCACHE_PROGRAM ccache)
|
||||
if(CCACHE_PROGRAM)
|
||||
message("-- Found ccache, enabling")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue