diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /contrib/restricted/boost/context/impl_common/ya.make | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'contrib/restricted/boost/context/impl_common/ya.make')
-rw-r--r-- | contrib/restricted/boost/context/impl_common/ya.make | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/contrib/restricted/boost/context/impl_common/ya.make b/contrib/restricted/boost/context/impl_common/ya.make new file mode 100644 index 0000000000..e9e9603eb4 --- /dev/null +++ b/contrib/restricted/boost/context/impl_common/ya.make @@ -0,0 +1,58 @@ +# Generated by devtools/yamaker. + +LIBRARY() + +WITHOUT_LICENSE_TEXTS() + +OWNER( + g:cpp-contrib + g:taxi-common +) + +VERSION(1.81.0) + +ORIGINAL_SOURCE(https://github.com/boostorg/context/archive/boost-1.81.0.tar.gz) + +LICENSE(BSL-1.0) + +PEERDIR( + contrib/restricted/boost/assert + contrib/restricted/boost/config + contrib/restricted/boost/core + contrib/restricted/boost/mp11 + contrib/restricted/boost/pool + contrib/restricted/boost/predef + contrib/restricted/boost/smart_ptr +) + +ADDINCL( + GLOBAL contrib/restricted/boost/context/include +) + +NO_COMPILER_WARNINGS() + +NO_UTIL() + +CFLAGS( + -DBOOST_CONTEXT_SOURCE +) + +IF (DYNAMIC_BOOST) + CFLAGS( + GLOBAL -DBOOST_CONTEXT_DYN_LINK + ) +ENDIF() + +SRCDIR(contrib/restricted/boost/context/src) + +IF (OS_WINDOWS) + SRCS( + windows/stack_traits.cpp + ) +ELSE() + SRCS( + posix/stack_traits.cpp + ) +ENDIF() + +END() |