blob: 7ce325bde997b3ad3001e9b3d1ffb622542eea30 (
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
46
47
48
49
50
51
52
53
54
55
56
|
# This file was generated by the build system used internally in the Yandex monorepo.
# Only simple modifications are allowed (adding source-files to targets, adding simple properties
# like target_include_directories). These modifications will be ported to original
# ya.make files by maintainers. Any complex modifications which can't be ported back to the
# original buildsystem will not be accepted.
add_library(restricted-boost-iostreams)
target_compile_options(restricted-boost-iostreams PRIVATE
-DBOOST_IOSTREAMS_USE_DEPRECATED
$<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything>
)
target_include_directories(restricted-boost-iostreams PUBLIC
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/include
)
target_include_directories(restricted-boost-iostreams PRIVATE
${CMAKE_SOURCE_DIR}/contrib/libs/libbz2
${CMAKE_SOURCE_DIR}/contrib/libs/zstd/include
)
target_link_libraries(restricted-boost-iostreams PUBLIC
contrib-libs-linux-headers
contrib-libs-cxxsupp
contrib-libs-libbz2
contrib-libs-lzma
contrib-libs-zlib
contrib-libs-zstd
restricted-boost-assert
restricted-boost-config
restricted-boost-core
restricted-boost-detail
restricted-boost-function
restricted-boost-integer
restricted-boost-iterator
restricted-boost-mpl
restricted-boost-numeric_conversion
restricted-boost-preprocessor
restricted-boost-random
restricted-boost-range
restricted-boost-regex
restricted-boost-smart_ptr
restricted-boost-static_assert
restricted-boost-throw_exception
restricted-boost-type_traits
restricted-boost-utility
)
target_sources(restricted-boost-iostreams PRIVATE
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/bzip2.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/file_descriptor.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/gzip.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/lzma.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/mapped_file.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/zlib.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/iostreams/src/zstd.cpp
)
|