brintos

brintos / llvm-project-archived public Read only

0
0
Text · 692 B · dfa2f9c Raw
51 lines · plain
1add_header_library(2  architectures3  HDRS4    architectures.h5)6 7add_header_library(8  compiler9  HDRS10    compiler.h11)12 13add_header_library(14  os15  HDRS16    os.h17)18 19add_header_library(20  cpu_features21  HDRS22    cpu_features.h23  DEPENDS24    .architectures25)26 27add_header_library(28  types29  HDRS30    types.h31  DEPENDS32    .architectures33    .compiler34    .cpu_features35    .os36    libc.hdr.float_macros37    libc.hdr.stdint_proxy38    libc.include.llvm-libc-macros.float16_macros39    libc.include.llvm-libc-types.float12840)41 42add_header_library(43  complex_types44  HDRS45    complex_types.h46  DEPENDS47    .types48    libc.include.llvm-libc-types.cfloat1649    libc.include.llvm-libc-types.cfloat12850)51