blob: c42a994cdcdfd57af3d256c7c0100e7851519960 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
LIBRARY()
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
VERSION(1.67)
OWNER(
antoshkka
g:cpp-committee
g:cpp-contrib
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
# This is an "all batteries included" version of boost with a full set of components
# It should be avoided in common libraries or projects that care for binary size
PEERDIR(
${BOOST_ROOT}/libs/asio
${BOOST_ROOT}/libs/atomic
${BOOST_ROOT}/libs/chrono
${BOOST_ROOT}/libs/context
${BOOST_ROOT}/libs/container
${BOOST_ROOT}/libs/coroutine
${BOOST_ROOT}/libs/date_time
${BOOST_ROOT}/libs/exception
${BOOST_ROOT}/libs/filesystem
${BOOST_ROOT}/libs/iostreams
${BOOST_ROOT}/libs/locale
${BOOST_ROOT}/libs/program_options
${BOOST_ROOT}/libs/random
${BOOST_ROOT}/libs/regex
${BOOST_ROOT}/libs/timer
${BOOST_ROOT}/libs/log
${BOOST_ROOT}/libs/serialization
${BOOST_ROOT}/libs/system
${BOOST_ROOT}/libs/thread
)
END()
RECURSE(
asio
atomic
chrono
container
context
coroutine
date_time
exception
filesystem
iostreams
locale
log
program_options
random
regex
serialization
system
test
thread
timer
)
IF (NOT OS_ANDROID)
RECURSE(
python
)
ENDIF()
|