This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
/
CMakeLists.txt
86 lines (79 loc) · 3.17 KB
/
CMakeLists.txt
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
project (
elektrasettings
VERSION 0.1.1
LANGUAGES C)
find_package (PkgConfig QUIET)
if (NOT PKG_CONFIG_FOUND)
exclude_binding (gsettings "Need PkgConfig needed to find dependencies for gsettings backend")
return ()
endif ()
pkg_check_modules (GLIB glib-2.0>=2.42 QUIET)
pkg_check_modules (GMODULE gmodule-2.0>=2.42 QUIET)
pkg_check_modules (GIO gio-2.0>=2.42 QUIET)
if (NOT GLIB_FOUND)
exclude_binding (gsettings "glib >= 2.42 needed for gsettings backend")
return ()
endif ()
if (NOT GMODULE_FOUND)
exclude_binding (gsettings "gmodule >= 2.42 needed for gsettings backend")
return ()
endif ()
if (NOT GIO_FOUND)
exclude_binding (gsettings "gio >= 2.42 needed for gsettings backend")
return ()
endif ()
check_binding_was_added (glib IS_GLIB_INCLUDED)
if (NOT IS_GLIB_INCLUDED)
exclude_binding (gsettings "gsettings depends on glib")
return ()
endif ()
add_binding (gsettings)
include_directories (${GLIB_INCLUDE_DIRS})
add_library (elektrasettings SHARED elektrasettingsbackend.c ${ELEKTRA_HEADERS})
set (
GSETTINGS_MODULE_PRIORITY
50
CACHE STRING "GIO Module Priority. Higher than 100 means the Elektra gsettings backend will be default.")
target_compile_definitions (elektrasettings PRIVATE G_ELEKTRA_SETTINGS_MODULE_PRIORITY=${GSETTINGS_MODULE_PRIORITY})
if (GELEKTRA_LIBRARY)
pkg_get_variable (GIO_MODULE_DIR gio-2.0 giomoduledir)
add_dependencies (elektrasettings elektra_config_headers)
file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/elektra/)
file (GLOB GS_ELEKTRA_HEADERS ../glib/*.h)
foreach (filename ${GS_ELEKTRA_HEADERS})
configure_file (${filename} ${CMAKE_BINARY_DIR}/include/elektra/ COPYONLY)
endforeach ()
file (GLOB GS_KDB_HEADERS ${CMAKE_SOURCE_DIR}/src/include/*.h)
foreach (filename ${GS_KDB_HEADERS})
configure_file (${filename} ${CMAKE_BINARY_DIR}/include/ COPYONLY)
endforeach ()
include_directories (${CMAKE_BINARY_DIR}/include/)
include_directories (${CMAKE_BINARY_DIR}/src/include/)
target_link_libraries (elektrasettings ${GLIB_LIBRARIES} ${GMODULE_LIBRARIES} ${GIO_LIBRARIES} ${GELEKTRA_LIBRARY} elektra-core)
if (INSTALL_SYSTEM_FILES)
install (TARGETS elektrasettings LIBRARY DESTINATION ${GIO_MODULE_DIR})
endif ()
else ()
pkg_get_variable (GIO_MODULE_DIR gio-2.0 giomoduledir)
pkg_check_modules (GELEKTRA gelektra-4.0>=0.8.16 QUIET)
if (!GELEKTRA_FOUND)
remove_binding (gsettings "elektra glib bindings needed for gsettings backend")
endif ()
include_directories (${GELEKTRA_INCLUDE_DIRS})
target_link_libraries (elektrasettings ${GLIB_LIBRARIES} ${GMODULE_LIBRARIES} ${GIO_LIBRARIES} ${GELEKTRA_LIBRARIES})
install (TARGETS elektrasettings LIBRARY DESTINATION ${GIO_MODULE_DIR})
endif ()
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
if (NOT FORCE_IN_SOURCE_BUILD)
message (
FATAL_ERROR
"In-source builds are not permitted.\n"
"Make a separate folder for building:\n"
" mkdir build && cd build && cmake ..\n"
"Before that, remove the files already created:\n"
" rm -rf CMakeCache.txt CMakeFiles\n"
"If you really know what you are doing\n"
"(will overwrite original files!) use:\n"
" cmake -DFORCE_IN_SOURCE_BUILD=ON\n")
endif (NOT FORCE_IN_SOURCE_BUILD)
endif (CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)