diff options
author | Maksim Kita <kitaetoya@gmail.com> | 2023-08-16 19:45:44 +0300 |
---|---|---|
committer | maksim-kita <maksim-kita@yandex-team.com> | 2023-08-16 21:20:29 +0300 |
commit | b151ead5232fd8b20b940e6686c91b64c700db11 (patch) | |
tree | dd94250feffed4aabd4bc889e3db83445da59a99 /contrib/restricted/patched/replxx/CMakeLists.darwin-x86_64.txt | |
parent | e4f09ec22e1897b1d7716cd23c5bab9069944cfb (diff) | |
download | ydb-b151ead5232fd8b20b940e6686c91b64c700db11.tar.gz |
Added interactive CLI
Added Interactive CLI
Pull Request resolved: #242
Diffstat (limited to 'contrib/restricted/patched/replxx/CMakeLists.darwin-x86_64.txt')
-rw-r--r-- | contrib/restricted/patched/replxx/CMakeLists.darwin-x86_64.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/contrib/restricted/patched/replxx/CMakeLists.darwin-x86_64.txt b/contrib/restricted/patched/replxx/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..a39729e6df --- /dev/null +++ b/contrib/restricted/patched/replxx/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,36 @@ + +# 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(restricted-patched-replxx) +target_compile_options(restricted-patched-replxx PRIVATE + -DREPLXX_BUILDING_DLL + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_include_directories(restricted-patched-replxx PUBLIC + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/include +) +target_include_directories(restricted-patched-replxx PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src +) +target_link_libraries(restricted-patched-replxx PUBLIC + contrib-libs-cxxsupp +) +target_sources(restricted-patched-replxx PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/ConvertUTF.cpp + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/conversion.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/escape.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/history.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/prompt.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/replxx.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/replxx_impl.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/terminal.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/util.cxx + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/wcwidth.cpp + ${CMAKE_SOURCE_DIR}/contrib/restricted/patched/replxx/src/windows.cxx +) |