Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « llvm-libc-macros « include « libc - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7490e813ea86917e38ea9846202ee5a366827ae (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
add_subdirectory(linux)

add_header(
  fcntl_macros
  HDR
    fcntl-macros.h
  DEPENDS
    .linux.fcntl_macros
)

add_header(
  file_seek_macros
  HDR
    file-seek-macros.h
)

add_header(
  sys_stat_macros
  HDR
    sys-stat-macros.h
  DEPENDS
    .linux.sys_stat_macros
)

add_header(
  sys_mman_macros
  HDR
    sys-mman-macros.h
  DEPENDS
    .linux.sys_mman_macros
)

add_header(
  sys_resource_macros
  HDR
    sys-resource-macros.h
  DEPENDS
    .linux.sys_resource_macros
)

add_header(
  time_macros
  HDR
    time-macros.h
  DEPENDS
    .linux.time_macros
)

add_header(
  unistd_macros
  HDR
    unistd-macros.h
  DEPENDS
    .linux.unistd_macros
)