CMakeLists.txt
839 Bytes
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
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
endif()
add_entrypoint_object(
raise
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.raise
)
add_entrypoint_object(
sigaction
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.sigaction
)
add_entrypoint_object(
sigprocmask
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.sigprocmask
)
add_entrypoint_object(
sigemptyset
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.sigemptyset
)
add_entrypoint_object(
sigaddset
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.sigaddset
)
add_entrypoint_object(
signal
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.signal
)
add_entrypoint_object(
sigfillset
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.sigfillset
)
add_entrypoint_object(
sigdelset
ALIAS
DEPENDS
.${LIBC_TARGET_OS}.sigdelset
)