mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
cmake: Make default build type Debug
With LTO, Release builds are now a lot slower. For development debug builds are much nicer. We'll ask packagers to pass Release when building a package.
This commit is contained in:
parent
94d3307469
commit
168d567250
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|||
|
||||
# We are C++11.
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(DEFAULT_BUILD_TYPE "RelWithDebInfo")
|
||||
set(DEFAULT_BUILD_TYPE "Debug")
|
||||
|
||||
# Generate Xcode schemas (but not for tests).
|
||||
set(CMAKE_XCODE_GENERATE_SCHEME 1)
|
||||
|
|
Loading…
Reference in a new issue