blob: 880df0ebc6cca95d23d6c92090c45cf041fee594 (
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
|
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)
PEERDIR(
${BOOST_ROOT}/libs/chrono
${BOOST_ROOT}/libs/system
)
IF (OS_WINDOWS)
SRCS(
src/win32/thread.cpp
src/win32/tss_dll.cpp
src/win32/tss_pe.cpp
)
ELSE()
SRCS(
src/pthread/once.cpp
src/pthread/thread.cpp
)
ENDIF()
SRCS(
src/future.cpp
)
END()
|