diff options
author | ilnaz <ilnaz@ydb.tech> | 2022-10-27 16:57:27 +0300 |
---|---|---|
committer | ilnaz <ilnaz@ydb.tech> | 2022-10-27 16:57:27 +0300 |
commit | 7409037ca690d39e67c2601f0448c94fe3f54367 (patch) | |
tree | be37e04846bd3df3ce39c5518492619e7675b49c /library/cpp/lua | |
parent | 2ab33806be812b8ef4d1260977673a64dc88d2cf (diff) | |
download | ydb-7409037ca690d39e67c2601f0448c94fe3f54367.tar.gz |
Support aws profiles
Diffstat (limited to 'library/cpp/lua')
-rw-r--r-- | library/cpp/lua/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/library/cpp/lua/CMakeLists.txt b/library/cpp/lua/CMakeLists.txt new file mode 100644 index 0000000000..dfa77ac81d --- /dev/null +++ b/library/cpp/lua/CMakeLists.txt @@ -0,0 +1,22 @@ + +# 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(library-cpp-lua) +target_link_libraries(library-cpp-lua PUBLIC + contrib-libs-cxxsupp + yutil + library-cpp-json + contrib-libs-lua + cpp-string_utils-ztstrbuf +) +target_sources(library-cpp-lua PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/lua/eval.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/lua/json.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/lua/wrapper.cpp +) |