blob: 36ce673ba670cbd15390ce56aff7aa18df41d4b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
LIBRARY()
INCLUDE(${ARCADIA_ROOT}/library/cpp/yt/ya_cpp.make.inc)
IF (OS_LINUX AND NOT SANITIZER_TYPE)
SRCS(stockpile_linux.cpp)
ELSE()
SRCS(stockpile_other.cpp)
ENDIF()
PEERDIR(
library/cpp/yt/misc
library/cpp/yt/threading
library/cpp/yt/logging
library/cpp/yt/memory
)
END()
|