diff options
author | hrustyashko <hrustyashko@yandex-team.ru> | 2022-04-07 10:47:49 +0300 |
---|---|---|
committer | hrustyashko <hrustyashko@yandex-team.ru> | 2022-04-07 10:47:49 +0300 |
commit | 18dcbc27f5d6c6d5a79cc85d30587dc2f14485cd (patch) | |
tree | 2f5f0cadb5822f8c712e961b0933722157f7e51e /library/python/symbols | |
parent | fcb0844ab2c3ff96971288ec2d7b024051eb1658 (diff) | |
download | ydb-18dcbc27f5d6c6d5a79cc85d30587dc2f14485cd.tar.gz |
YQ-1003 ExternalFunction provider
store connection name at resolved function
rename expr nodes to dq_function
dq function data provider
ref:23fa1160965eb31574ae1c31a5a9152781f238c2
Diffstat (limited to 'library/python/symbols')
-rw-r--r-- | library/python/symbols/libc/CMakeLists.txt | 28 | ||||
-rw-r--r-- | library/python/symbols/python/CMakeLists.txt | 25 | ||||
-rw-r--r-- | library/python/symbols/registry/CMakeLists.txt | 17 |
3 files changed, 70 insertions, 0 deletions
diff --git a/library/python/symbols/libc/CMakeLists.txt b/library/python/symbols/libc/CMakeLists.txt new file mode 100644 index 0000000000..ef018b607f --- /dev/null +++ b/library/python/symbols/libc/CMakeLists.txt @@ -0,0 +1,28 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + + +add_library(python-symbols-libc INTERFACE) +target_link_libraries(python-symbols-libc INTERFACE + contrib-libs-cxxsupp + yutil + python-symbols-registry +) + +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 PUBLIC + 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 new file mode 100644 index 0000000000..3993e19c91 --- /dev/null +++ b/library/python/symbols/python/CMakeLists.txt @@ -0,0 +1,25 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + + +add_library(python-symbols-python INTERFACE) +target_link_libraries(python-symbols-python INTERFACE + contrib-libs-cxxsupp + yutil + python-symbols-registry +) + +add_global_library_for(python-symbols-python.global python-symbols-python) +target_link_libraries(python-symbols-python.global PUBLIC + contrib-libs-cxxsupp + yutil + python-symbols-registry +) +target_sources(python-symbols-python.global PRIVATE + ${CMAKE_SOURCE_DIR}/library/python/symbols/python/syms.cpp +) diff --git a/library/python/symbols/registry/CMakeLists.txt b/library/python/symbols/registry/CMakeLists.txt new file mode 100644 index 0000000000..89e8f9ba17 --- /dev/null +++ b/library/python/symbols/registry/CMakeLists.txt @@ -0,0 +1,17 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + + +add_library(python-symbols-registry) +target_link_libraries(python-symbols-registry PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(python-symbols-registry PRIVATE + ${CMAKE_SOURCE_DIR}/library/python/symbols/registry/syms.cpp +) |