diff options
author | max42 <max42@yandex-team.com> | 2023-07-29 00:02:16 +0300 |
---|---|---|
committer | max42 <max42@yandex-team.com> | 2023-07-29 00:02:16 +0300 |
commit | 73b89de71748a21e102d27b9f3ed1bf658766cb5 (patch) | |
tree | 188bbd2d622fa91cdcbb1b6d6d77fbc84a0646f5 /contrib/libs/yajl/CMakeLists.windows-x86_64.txt | |
parent | 528e321bcc2a2b67b53aeba58c3bd88305a141ee (diff) | |
download | ydb-73b89de71748a21e102d27b9f3ed1bf658766cb5.tar.gz |
YT-19210: expose YQL shared library for YT.
After this, a new target libyqlplugin.so appears. in open-source cmake build.
Diff in open-source YDB repo looks like the following: https://paste.yandex-team.ru/f302bdb4-7ef2-4362-91c7-6ca45f329264
Diffstat (limited to 'contrib/libs/yajl/CMakeLists.windows-x86_64.txt')
-rw-r--r-- | contrib/libs/yajl/CMakeLists.windows-x86_64.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/libs/yajl/CMakeLists.windows-x86_64.txt b/contrib/libs/yajl/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..41b5ae1274 --- /dev/null +++ b/contrib/libs/yajl/CMakeLists.windows-x86_64.txt @@ -0,0 +1,29 @@ + +# This file was generated 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(contrib-libs-yajl) +target_compile_options(contrib-libs-yajl PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(contrib-libs-yajl PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(contrib-libs-yajl PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_buf.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_gen.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_parser.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_version.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_alloc.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_encode.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_lex.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_tree.c + ${CMAKE_SOURCE_DIR}/contrib/libs/yajl/yajl_parser.cpp +) |