source: pacpusframework/branches/2.0-beta1/CMakeLists.txt@ 128

Last change on this file since 128 was 128, checked in by Marek Kurdej, 11 years ago

Update: using CMake CMP0020 policy if supported (auto link qtmain.lib on Windows).

  • Property svn:executable set to *
File size: 4.6 KB
Line 
1#################################################
2# ___________ ____ ______ __ __ _____ #
3# \____ \__ \ _/ ___\\____ \| | \/ ___/ #
4# | |_> > __ \\ \___| |_> > | /\___ \ #
5# | __(____ /\___ > __/|____//____ > #
6# |__| \/ \/|__| \/ #
7# #
8#################################################
9
10project(Pacpus)
11cmake_minimum_required(VERSION 2.8)
12
13if(POLICY CMP0020)
14 cmake_policy(SET CMP0020 NEW) # for QT5.1 on windows / not work on linux
15endif()
16
17# ========================================
18# Pacpus version
19# ========================================
20set(PACPUS_MAJOR_VERSION 0)
21set(PACPUS_MINOR_VERSION 1)
22set(PACPUS_PATCH_VERSION 0)
23set(PACPUS_VERSION
24 "${PACPUS_MAJOR_VERSION}.${PACPUS_MINOR_VERSION}.${PACPUS_PATCH_VERSION}")
25
26# ========================================
27# CMake variables
28# ========================================
29set(PACPUS_ROOT_DIR ${CMAKE_SOURCE_DIR})
30set(PACPUS_3RD_PARTY_DIR ${PACPUS_ROOT_DIR}/3rd)
31set(PACPUS_CMAKE_DIR ${PACPUS_ROOT_DIR}/cmake)
32set(PACPUS_DOC_DIR ${PACPUS_ROOT_DIR}/doc)
33set(PACPUS_INCLUDE_DIR ${PACPUS_ROOT_DIR}/include/)
34set(PACPUS_SCRIPTS_DIR ${PACPUS_ROOT_DIR}/scripts)
35set(PACPUS_SOURCE_DIR ${PACPUS_ROOT_DIR}/src)
36set(IS_BUILDING_PACPUS TRUE)
37
38# ========================================
39# Configure CMake
40# ========================================
41list(APPEND CMAKE_MODULE_PATH ${PACPUS_CMAKE_DIR})
42
43# ========================================
44# Import some functions
45# ========================================
46include(${PACPUS_CMAKE_DIR}/PacpusUtilities.cmake)
47
48# ========================================
49# Configure Pacpus
50# ========================================
51include(${PACPUS_CMAKE_DIR}/PacpusConfiguration.cmake)
52
53# ========================================
54# Find dependencies
55# ========================================
56include(${PACPUS_CMAKE_DIR}/PacpusDependencies.cmake)
57
58# ========================================
59# Handle platform specific behaviors
60# ========================================
61include(${PACPUS_CMAKE_DIR}/PacpusPlatforms.cmake)
62
63# ========================================
64# Pre-configuration of the compiler
65# ========================================
66# Includes directories
67include_directories(
68 ${PACPUS_DEPENDENCIES_INC}
69 ${PACPUS_INCLUDE_DIR}
70)
71# Compiler flags coming from PacpusDependencies and PacpusPlatforms
72add_definitions(${PACPUS_DEFINITIONS})
73
74# ========================================
75# Build the Pacpus' modules
76# ========================================
77add_subdirectory(${PACPUS_SOURCE_DIR})
78
79# ========================================
80# Build the documentation if enabled
81# ========================================
82if(PACPUS_BUILD_DOC)
83 add_subdirectory(${PACPUS_DOC_DIR})
84endif()
85
86# ========================================
87# Pacpus Installation
88# ========================================
89include(${PACPUS_CMAKE_DIR}/PacpusInstall.cmake)
90
91# ========================================
92# Summary
93# ========================================
94pacpus_info("")
95pacpus_info("=====================================================================")
96pacpus_info("Configuration for Pacpus ${PACPUS_VERSION}")
97pacpus_info("=====================================================================")
98pacpus_info("")
99pacpus_info(" Platform:")
100pacpus_info(" Host:" ${CMAKE_HOST_SYSTEM_NAME} ${CMAKE_HOST_SYSTEM_VERSION} ${CMAKE_HOST_SYSTEM_PROCESSOR})
101if(CMAKE_CROSS_COMPILING)
102 pacpus_info(" Target:" ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR})
103endif()
104pacpus_info(" CMake:" ${CMAKE_VERSION})
105pacpus_info(" CMake generator:" ${CMAKE_GENERATOR})
106pacpus_info(" CMake build tool:" ${CMAKE_BUILD_TOOL})
107if(MSVC)
108 pacpus_info(" MSVC:" ${MSVC_VERSION})
109else()
110 pacpus_info(" Configuration:" ${CMAKE_BUILD_TYPE})
111endif()
112pacpus_info("")
113pacpus_info(" Compiler:")
114pacpus_info(" C++ Compiler:" ${CMAKE_CXX_COMPILER})
115pacpus_info(" C++ flags (release):" ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE})
116pacpus_info(" C++ flags (debug):" ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_DEBUG})
117pacpus_info("")
118pacpus_info(" Result:")
119pacpus_info(" Install directory:" ${PACPUS_INSTALL_DIR})
120pacpus_info("")
121pacpus_info(" Options:")
122pacpus_info(" Logging enabled:" ${PACPUS_USE_LOG})
123pacpus_info(" Installation of 3rd party:" ${PACPUS_INSTALL_3RD})
124pacpus_info(" Documentation enabled:" ${PACPUS_BUILD_DOC})
125pacpus_info("")
126if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}")
127 message(WARNING "The src directory is the same as bin directory. \"make clean\" may damage the source tree")
128endif()
Note: See TracBrowser for help on using the repository browser.