aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/logger/ya.make
blob: 5e426eb32ee5322b461a85bf4a791345ced830e0 (plain) (blame)
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
LIBRARY()

GENERATE_ENUM_SERIALIZATION(priority.h)

PEERDIR(
    library/cpp/json
    library/cpp/deprecated/atomic
)

SRCS(
    all.h
    backend.cpp
    backend_creator.cpp
    composite.cpp
    GLOBAL composite_creator.cpp
    element.cpp
    file.cpp
    GLOBAL file_creator.cpp
    filter.cpp
    filter_creator.cpp
    log.cpp
    null.cpp
    GLOBAL null_creator.cpp
    priority.h
    record.h
    rotating_file.cpp
    GLOBAL rotating_file_creator.cpp
    stream.cpp
    GLOBAL stream_creator.cpp
    sync_page_cache_file.cpp
    GLOBAL sync_page_cache_file_creator.cpp
    system.cpp
    GLOBAL system_creator.cpp
    thread.cpp
    thread_creator.cpp
    GLOBAL uninitialized_creator.cpp
    reopen.h
)

END()

RECURSE(
    global
    ut
)