From: RĂ©mi Verschelde Date: Fri, 9 Dec 2016 22:03:13 +0000 (+0100) Subject: CMake: Default to RelWithDebInfo build type when not specified X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=commitdiff_plain;h=ee61774f2faaa15f5c55bb126e22b5fe650b8e75 CMake: Default to RelWithDebInfo build type when not specified Also cosmetic changes. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index e29f3a7..837960a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,10 +6,10 @@ cmake_policy(SET CMP0004 OLD) include(FindPkgConfig) include(GNUInstallDirs) -set(SRCDIR "${CMAKE_CURRENT_SOURCE_DIR}/Source") +### Helpers -### Helper +set(SRCDIR "${CMAKE_CURRENT_SOURCE_DIR}/Source") if(UNIX AND NOT APPLE) set(LINUX TRUE) @@ -18,6 +18,11 @@ endif() ### CMake config +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE RelWithDebInfo) +endif(NOT CMAKE_BUILD_TYPE) +message("CMake build type: ${CMAKE_BUILD_TYPE}") + set(CMAKE_CXX_FLAGS "-Wall -Wno-parentheses -pedantic --std=c++11 ${CMAKE_CXX_FLAGS}") if(APPLE) @@ -264,7 +269,7 @@ if(LINUX) install(FILES ${CMAKE_SOURCE_DIR}/Dist/lugaru.png DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/128x128/apps) install(FILES ${CMAKE_SOURCE_DIR}/Dist/lugaru.6 DESTINATION ${CMAKE_INSTALL_MANDIR}/man6) else(SYSTEM_INSTALL) - message(WARNING "You are installing Lugaru without having enabled the SYSTEM_INSTALL option. It will default to looking for the data in the 'Data' directory next to the binary.") + message("You are building Lugaru without having enabled the SYSTEM_INSTALL option. It will default to looking for the data in the 'Data' directory next to the binary.") install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/lugaru DESTINATION ${CMAKE_INSTALL_PREFIX}) install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data DESTINATION ${CMAKE_INSTALL_PREFIX}) endif(SYSTEM_INSTALL)