aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/libs/filesystem/ya.make
blob: bfad36367520daba3658602c6be61d1175acd954 (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
LIBRARY()

LICENSE(BSL-1.0)

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

OWNER(
    antoshkka
    g:cpp-committee
    g:cpp-contrib
)

INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)

IF (DYNAMIC_BOOST)
    CFLAGS(
        -DBOOST_FILESYSTEM_DYN_LINK=1
    )
ELSE()
    CFLAGS(
        -DBOOST_FILESYSTEM_STATIC_LINK=1
    )
ENDIF()

PEERDIR(
    ${BOOST_ROOT}/libs/system
)

SRCS(
    src/codecvt_error_category.cpp
    src/operations.cpp
    src/path.cpp
    src/path_traits.cpp
    src/portability.cpp
    src/unique_path.cpp
    src/utf8_codecvt_facet.cpp
    src/windows_file_codecvt.cpp
)

END()