Enable C++11
[quassel.git] / cmake / QuasselCompileSettings.cmake
1 # This file contains compile flags and general build configuration for Quassel
2 #
3 # (C) 2014 by the Quassel Project <devel@quassel-irc.org>
4 #
5 # Redistribution and use is allowed according to the terms of the BSD license.
6 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
7
8 include(CheckCXXCompilerFlag)
9
10 if (CMAKE_CONFIGURATION_TYPES)
11     set(CMAKE_CONFIGURATION_TYPES Release RelWithDebInfo Debug Debugfull Profile)
12     set(CMAKE_CONFIGURATION_TYPES "${CMAKE_CONFIGURATION_TYPES}" CACHE STRING "These are the configuration types we support" FORCE)
13 endif()
14
15 if(NOT CMAKE_BUILD_TYPE)
16     set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo Debug Debugfull Profile" FORCE)
17 endif()
18
19 # Qt debug flags
20 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_DEBUG QT_DEBUG)
21 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_DEBUGFULL QT_DEBUG)
22 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_RELEASE QT_NO_DEBUG NDEBUG)
23 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_RELWITHDEBINFO QT_NO_DEBUG NDEBUG)
24 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_PROFILE QT_NO_DEBUG NDEBUG)
25 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_MINSIZEREL QT_NO_DEBUG NDEBUG)
26
27 if (NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
28     set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS QT_NO_DEBUG NDEBUG)
29 endif()
30
31 # Enable various flags on gcc
32 if (CMAKE_COMPILER_IS_GNUCXX)
33     if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.7")
34         message(WARNING "Your compiler is too old; we expect at least GCC 4.7. Your build will likely fail.")
35     endif()
36
37     # Let's just hope that all gccs support these options and skip the tests...
38     # -fno-strict-aliasing is needed apparently for Qt < 4.6
39     set(CMAKE_CXX_FLAGS                  "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -Wnon-virtual-dtor -fno-strict-aliasing")
40     #  set(CMAKE_CXX_FLAGS_RELEASE          "-O2")   # use CMake default
41     #  set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-g -O2")  # use CMake default
42     set(CMAKE_CXX_FLAGS_DEBUG             "-g -ggdb -O2 -fno-reorder-blocks -fno-schedule-insns -fno-inline")
43     set(CMAKE_CXX_FLAGS_DEBUGFULL         "-g3 -ggdb -fno-inline")
44     set(CMAKE_CXX_FLAGS_PROFILE           "-g3 -ggdb -fno-inline -ftest-coverage -fprofile-arcs")
45
46     set(CMAKE_CXX_FLAGS                  "${CMAKE_CXX_FLAGS} -ansi -W -Wall -Wextra -Wnon-virtual-dtor -fno-strict-aliasing -Wundef -Wcast-align -Wpointer-arith -Wformat-security -fno-check-new -fno-common")
47
48     check_cxx_compiler_flag(-Woverloaded-virtual CXX_W_OVERLOADED_VIRTUAL)
49     if(CXX_W_OVERLOADED_VIRTUAL)
50         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Woverloaded-virtual")
51     endif()
52
53     # Just for miniz
54     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-unused-function -Wno-undef -fno-strict-aliasing")
55
56 # ... and for Clang
57 elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
58     if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.1")
59         message(WARNING "Your compiler is too old; we expect at least Clang 3.1. Your build will likely fail.")
60     endif()
61
62     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wextra -Wpointer-arith -Wformat-security -Woverloaded-virtual -fno-common -Wno-deprecated-register")
63     #  set(CMAKE_CXX_FLAGS_RELEASE        "-O2 -DNDEBUG -DQT_NO_DEBUG")     # Use CMake default
64     #  set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g -DNDEBUG -DQT_NO_DEBUG")  # Use CMake default
65     set(CMAKE_CXX_FLAGS_DEBUG          "-g -O2 -fno-inline")
66     set(CMAKE_CXX_FLAGS_DEBUGFULL      "-g3 -fno-inline")
67     set(CMAKE_CXX_FLAGS_PROFILE        "-g3 -fno-inline -ftest-coverage -fprofile-arcs")
68
69     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-unused-function -Wno-undef -fno-strict-aliasing")
70
71 # For MSVC, at least do a version sanity check
72 elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "MSVC")
73     if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "18.0")
74         message(WARNING "Your compiler is too old; we expect at least Visual Studio Nov 2013 CTP (MSVC 18). Your build will likely fail.")
75     endif()
76
77 # Unknown/unsupported compiler
78 else()
79     message(WARNING "Unknown or unsupported compiler. Make sure to enable C++11 support. Good luck.")
80 endif()
81
82 # Mac build stuff
83 if (APPLE AND DEPLOY)
84     set(CMAKE_OSX_ARCHITECTURES "x86_64")
85     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.8")
86     set(CMAKE_OSX_SYSROOT "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk")
87 endif()