blob: a9aa573cc9a6333d28d781849250b4a57ce25083 (
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
|
add_header_library(
core_structs
HDRS
core_structs.h
DEPENDS
libc.src.__support.CPP.string_view
libc.hdr.types.struct_tm
libc.hdr.stdint_proxy
)
add_header_library(
parser
HDRS
parser.h
DEPENDS
.core_structs
libc.src.__support.CPP.string_view
libc.src.__support.ctype_utils
libc.src.__support.str_to_integer
)
add_header_library(
converter
HDRS
converter.h
num_converter.h
str_converter.h
composite_converter.h
DEPENDS
.core_structs
libc.src.time.time_utils
libc.src.time.time_constants
libc.src.stdio.printf_core.writer
libc.src.__support.CPP.string_view
libc.src.__support.integer_to_string
)
add_header_library(
strftime_main
HDRS
strftime_main.h
DEPENDS
.core_structs
.parser
.converter
libc.src.__support.error_or
libc.src.stdio.printf_core.writer
libc.hdr.types.struct_tm
)
|