forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
50 lines (39 loc) · 995 Bytes
/
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
include (LibAddBinding)
check_binding_included ("cpp" IS_INCLUDED)
if (IS_INCLUDED)
add_subdirectory (cpp)
endif ()
check_binding_included ("jna" IS_INCLUDED)
if (IS_INCLUDED)
add_subdirectory (jna)
endif ()
check_binding_included ("rust" IS_INCLUDED)
if (IS_INCLUDED)
add_subdirectory (rust)
endif ()
check_binding_included ("xfconf" IS_INCLUDED)
if (IS_INCLUDED)
add_subdirectory (xfconf)
endif ()
check_binding_included ("go-elektra" IS_INCLUDED)
if (IS_INCLUDED)
add_subdirectory (go-elektra)
endif ()
add_subdirectory (swig)
check_binding_included ("glib" IS_INCLUDED)
check_binding_included ("gsettings" IS_GSETTINGS_INCLUDED)
if (IS_INCLUDED
OR IS_PYTHON_INCLUDED
OR IS_LUA_INCLUDED
OR IS_GSETTINGS_INCLUDED)
add_subdirectory (glib)
endif ()
if (IS_GSETTINGS_INCLUDED)
add_subdirectory (gsettings)
endif ()
add_subdirectory (intercept)
add_subdirectory (io)
check_binding_included ("elixir" IS_INCLUDED)
if (IS_INCLUDED)
add_subdirectory (erl_nif)
endif ()