From 1ca22e1aa438a5ce65e9d328a9af4197ad191d6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sun, 2 Sep 2018 11:22:36 +0200 Subject: [PATCH] Default build is release. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index af4f7a9..84ba1e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ set(TARGET_VERSION "1.0-beta") # Use DEBUG by default if(NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE "debug") + set(CMAKE_BUILD_TYPE "release") endif() string(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) message(STATUS "Build Type: ${CMAKE_BUILD_TYPE}")