blob: bf34c7c0f52eb72629530c301e515a1c8609a026 (
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
|
project (libayatana-common C CXX)
cmake_minimum_required (VERSION 2.8.9)
set(PROJECT_VERSION "0.8.1")
set(PACKAGE ${CMAKE_PROJECT_NAME})
# Options
option(DISABLE_TESTS "Disable tests" off)
# GNU standard installation directories
include (GNUInstallDirs)
set (CMAKE_INSTALL_PKGLIBEXECDIR "${CMAKE_INSTALL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}")
set (CMAKE_INSTALL_FULL_PKGLIBEXECDIR "${CMAKE_INSTALL_FULL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}")
# Check for prerequisites
find_package (PkgConfig REQUIRED)
include (FindPkgConfig)
pkg_check_modules(GLIB REQUIRED
glib-2.0>=2.36
)
include_directories (${GLIB_INCLUDE_DIRS})
pkg_check_modules(
URLDISPATCHER
url-dispatcher-1>=1
)
include_directories(${URLDISPATCHER_INCLUDE_DIRS})
set(CC_WARNING_ARGS " -Wall -pedantic -Wextra -Wno-missing-field-initializers")
add_subdirectory(src)
if (DISABLE_TESTS)
message(STATUS "Tests disabled")
else()
include(CTest)
enable_testing()
add_subdirectory(tests)
endif()
|