# Copyright © 2012 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authored by: Thomas Voss , # Alan Griffiths set( MIR_GCC_VERSION 4.7 CACHE STRING "Version of gcc/g++" ) cmake_policy(SET CMP0015 NEW) if (NOT DEFINED CMAKE_C_COMPILER) set (CMAKE_C_COMPILER gcc-${MIR_GCC_VERSION}) endif () if (NOT DEFINED CMAKE_CXX_COMPILER) set (CMAKE_CXX_COMPILER g++-${MIR_GCC_VERSION}) endif () set(CMAKE_GCOV gcov-${MIR_GCC_VERSION}) project(Mir) cmake_minimum_required(VERSION 2.8) set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib) set(MIR_VERSION_MAJOR 0) set(MIR_VERSION_MINOR 0) set(MIR_VERSION_PATCH 2) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) option(use_debflags "Use build flags from dpkg-buildflags." OFF) if(use_debflags) include (cmake/Debian.cmake) endif() include (cmake/EnableCoverageReport.cmake) include (cmake/MirCommon.cmake) include (cmake/Doxygen.cmake) include (cmake/PrePush.cmake) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror -Wall -pedantic -Wextra -fPIC") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Werror -Wall -fno-strict-aliasing -pedantic -Wextra -fPIC") ##################################################################### # Enable code coverage calculation with gcov/gcovr/lcov # Usage: # * Switch build type to coverage (use ccmake or cmake-gui) # * Invoke make, make test, make coverage # * Find html report in subdir coveragereport # * Find xml report feasible for jenkins in coverage.xml ##################################################################### IF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) ENDIF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) enable_testing() include_directories(include/shared) # Check for boost find_package(Boost 1.48.0 COMPONENTS chrono date_time filesystem system thread program_options regex REQUIRED) include_directories ( ${Boost_INCLUDE_DIRS} ) option( MIR_DISABLE_EPOLL_REACTOR "Disable boost::asio's epoll implementation and switch to a select-based reactor to account for ancient kernels on ppa builders." OFF ) if(MIR_DISABLE_EPOLL_REACTOR) add_definitions( -DBOOST_ASIO_DISABLE_EPOLL -DBOOST_ASIO_DISABLE_KQUEUE -DBOOST_ASIO_DISABLE_DEV_POLL ) endif(MIR_DISABLE_EPOLL_REACTOR) # Default to gbm backend set( MIR_PLATFORM gbm CACHE STRING "graphics backend to build (options are 'gbm' or 'android')" ) set (MIR_TRANSPORT socket CACHE STRING "IPC transport to build (options are 'socket' or 'binder')" ) set (MIR_DISABLE_INPUT false CACHE BOOL "Don't build the input subsystem" ) set (MIR_INPUT_USE_ANDROID_TYPES false CACHE BOOL "Use android types in input stack instead of std library" ) find_package(EGL REQUIRED) find_package(GLESv2 REQUIRED) find_package(Protobuf REQUIRED ) include_directories (${GLESv2_INCLUDE_DIRS}) include_directories (${EGL_INCLUDE_DIRS}) if (NOT MIR_INPUT_USE_ANDROID_TYPES) add_definitions( -DANDROID_USE_STD ) endif() if (MIR_PLATFORM STREQUAL "android") include_directories(SYSTEM ${PROJECT_SOURCE_DIR}/3rd_party/android-deps) list(APPEND CMAKE_SYSTEM_INCLUDE_PATH "${PROJECT_SOURCE_DIR}/3rd_party/android-deps") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pthread") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive") add_definitions( -DANDROID ) find_package( LibHardware REQUIRED ) #ctest does not work for android, so turn test discovery off set(DISABLE_GTEST_TEST_DISCOVERY ON) elseif (MIR_PLATFORM STREQUAL "gbm") find_package( PkgConfig ) pkg_check_modules( GBM REQUIRED gbm>=9.0.0) pkg_check_modules( DRM REQUIRED libdrm ) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__GBM__") else () message (FATAL_ERROR "MIR_BACKEND must be either 'android' or 'gbm'") endif() set(MIR_ANDROID_INCLUDE_DIRECTORIES) # to be filled by android-input set(MIR_ANDROID_INPUT_COMPILE_FLAGS) # to be filled by android-input set(MIR_3RD_PARTY_INCLUDE_DIRECTORIES) add_subdirectory(3rd_party/) include_directories(${MIR_3RD_PARTY_INCLUDE_DIRECTORIES}) include_directories(${MIR_ANDROID_INCLUDE_DIRECTORIES}) set(MIR_GENERATED_INCLUDE_DIRECTORIES) macro(uses_android_input _target_name) set_property(TARGET ${_target_name} APPEND_STRING PROPERTY COMPILE_FLAGS "${MIR_ANDROID_INPUT_COMPILE_FLAGS}") endmacro() add_subdirectory(src/) include_directories(${MIR_GENERATED_INCLUDE_DIRECTORIES}) set (OLD_CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # Don't treat warnings as errors in 3rd_party/{gmock,cucumber-cpp} string (REPLACE " -Werror " " " CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # Pulling in local gmock version # While this seems evil, we are doing # it to ensure/allow for: # (1.) a matching gmock/gtest version # (2.) a stream-lined cross-compilation workflow set( GTEST_INCLUDE_DIR 3rd_party/gmock-1.6.0/include 3rd_party/gmock-1.6.0/gtest/include) add_subdirectory(3rd_party/gmock-1.6.0/) set(GMOCK_LIBRARY gmock) set(GMOCK_MAIN_LIBRARY gmock_main) set( GTEST_BOTH_LIBRARIES ${GMOCK_LIBRARY} ${GMOCK_MAIN_LIBRARY}) set(GTEST_FOUND TRUE) # GMock/GTest build finished and available to subsequent components include_directories ( ${GTEST_INCLUDE_DIR} ) # We need to build cucumber after gtest add_subdirectory(3rd_party/cucumber-cpp) # Restore -Werror for non-3rd-party code set (CMAKE_CXX_FLAGS ${OLD_CMAKE_CXX_FLAGS}) add_subdirectory(benchmarks/) add_subdirectory(tests/) add_subdirectory(tools/) add_subdirectory(examples/) add_subdirectory(guides/) add_subdirectory(cmake/) enable_coverage_report(mirserver)