CMake: Fix setting default value for CMAKE_BUILD_TYPE

CMAKE_BUILD_TYPE "Release" default value was not set, quieting among
others compilation warnings.
This commit is contained in:
Nestorfish 2016-10-11 03:34:33 +02:00 committed by sfan5
parent c45965eb8d
commit d83f0d9e8d
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}")
# Stuff & Paths
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build.")
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
endif()
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -Wall")