blob: bc65ceee08db7a97f5947f2229f46d8533e4d2cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
cmake_minimum_required(VERSION 3.13)
project(libayatana-indicator C)
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
SET(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE)
endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
option(ENABLE_TESTS "Enable all tests and checks" OFF)
option(ENABLE_COVERAGE "Enable coverage reports (includes enabling all tests and checks)" OFF)
if(ENABLE_COVERAGE)
set(ENABLE_TESTS ON)
set(CMAKE_BUILD_TYPE "Coverage")
else()
set(CMAKE_BUILD_TYPE "Release")
endif()
# Check for prerequisites
option(FLAVOUR_GTK2 "Build against GTK+-2.0" OFF)
option(FLAVOUR_GTK3 "Build against GTK+-3.0" ON)
if (FLAVOUR_GTK2)
set (FLAVOUR_GTK3 OFF)
endif()
if (FLAVOUR_GTK3)
set (FLAVOUR_GTK2 OFF)
endif()
if (FLAVOUR_GTK3)
set(DEPS
glib-2.0>=2.37
gtk+-3.0>=3.24
gmodule-2.0
gio-unix-2.0
libayatana-ido3-0.4>=0.8.2
)
endif()
if (FLAVOUR_GTK2)
set(DEPS
glib-2.0>=2.37
gtk+-2.0>=2.18
gmodule-2.0
gio-unix-2.0
)
endif()
find_package (PkgConfig REQUIRED)
pkg_check_modules(PROJECT_DEPS REQUIRED ${DEPS})
include(CheckLibraryExists)
CHECK_LIBRARY_EXISTS(m sin "" HAVE_LIB_M)
if (HAVE_LIB_M)
set(EXTRA_LIBS ${EXTRA_LIBS} m)
endif (HAVE_LIB_M)
# Set global variables
include(GNUInstallDirs)
set(ABI_VERSION "7")
set(API_VERSION "4")
set(PROJECT_VERSION "0.8.4")
set(PROJECT_NAME "libayatana-indicator")
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(COMPILE_FLAGS "${COMPILE_FLAGS} -Weverything")
set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-c++98-compat -Wno-padded")
set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-documentation")
else()
set(COMPILE_FLAGS "${COMPILE_FLAGS} -Wall")
endif()
# Make everything
add_subdirectory(src)
add_subdirectory(data)
add_subdirectory(tools)
if(ENABLE_TESTS)
include(CTest)
enable_testing()
add_subdirectory(tests)
if (ENABLE_COVERAGE)
find_package(CoverageReport)
ENABLE_COVERAGE_REPORT(
TARGETS "ayatana-indicator3"
TESTS "test-desktop-shortcuts" "test-indicator-ng" "test-loader"
FILTER /usr/include ${CMAKE_BINARY_DIR}/*
)
endif()
endif()
# Display config info
message(STATUS "Install prefix: ${CMAKE_INSTALL_PREFIX}")
message(STATUS "Unit tests: ${ENABLE_TESTS}")
|