diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-22 16:25:52 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-22 16:25:52 +0300 |
commit | fd6dda9a4b15a851483c803a4fa70bd6bd016598 (patch) | |
tree | 32dbfd4b0eb0bd13a0d41e72fedbfc76565f328c /library/python/symbols | |
parent | a5ced62af6cd0039f4a228c4db185105d5426e94 (diff) | |
download | ydb-fd6dda9a4b15a851483c803a4fa70bd6bd016598.tar.gz |
intermediate changes
ref:582ed9d2a52706516cc273d3e82d8e3de510b40f
Diffstat (limited to 'library/python/symbols')
-rw-r--r-- | library/python/symbols/libc/CMakeLists.txt | 5 | ||||
-rw-r--r-- | library/python/symbols/python/CMakeLists.txt | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/library/python/symbols/libc/CMakeLists.txt b/library/python/symbols/libc/CMakeLists.txt index 22325080a5..26abcaed3a 100644 --- a/library/python/symbols/libc/CMakeLists.txt +++ b/library/python/symbols/libc/CMakeLists.txt @@ -9,6 +9,11 @@ add_global_library_for(python-symbols-libc.global python-symbols-libc) target_compile_options(python-symbols-libc.global PRIVATE -Wno-deprecated-declarations ) +target_link_libraries(python-symbols-libc.global INTERFACE + contrib-libs-cxxsupp + yutil + python-symbols-registry +) target_sources(python-symbols-libc.global PRIVATE ${CMAKE_SOURCE_DIR}/library/python/symbols/libc/syms.cpp ) diff --git a/library/python/symbols/python/CMakeLists.txt b/library/python/symbols/python/CMakeLists.txt index 1fe3a19f1c..bb48caccfc 100644 --- a/library/python/symbols/python/CMakeLists.txt +++ b/library/python/symbols/python/CMakeLists.txt @@ -6,6 +6,11 @@ target_link_libraries(python-symbols-python INTERFACE ) add_global_library_for(python-symbols-python.global python-symbols-python) +target_link_libraries(python-symbols-python.global INTERFACE + contrib-libs-cxxsupp + yutil + python-symbols-registry +) target_sources(python-symbols-python.global PRIVATE ${CMAKE_SOURCE_DIR}/library/python/symbols/python/syms.cpp ) |