From 33ed6077e694c2f1286c01ebe1be30b189850e77 Mon Sep 17 00:00:00 2001 From: robot-piglet <robot-piglet@yandex-team.com> Date: Tue, 7 Mar 2023 12:53:35 +0300 Subject: Intermediate changes --- library/cpp/lua/CMakeLists.darwin-x86_64.txt | 22 ++++++++++++++++++++++ library/cpp/lua/CMakeLists.darwin.txt | 22 ---------------------- library/cpp/lua/CMakeLists.linux-x86_64.txt | 23 +++++++++++++++++++++++ library/cpp/lua/CMakeLists.linux.txt | 23 ----------------------- library/cpp/lua/CMakeLists.txt | 4 ++-- 5 files changed, 47 insertions(+), 47 deletions(-) create mode 100644 library/cpp/lua/CMakeLists.darwin-x86_64.txt delete mode 100644 library/cpp/lua/CMakeLists.darwin.txt create mode 100644 library/cpp/lua/CMakeLists.linux-x86_64.txt delete mode 100644 library/cpp/lua/CMakeLists.linux.txt (limited to 'library/cpp/lua') diff --git a/library/cpp/lua/CMakeLists.darwin-x86_64.txt b/library/cpp/lua/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..7dc3bec75b --- /dev/null +++ b/library/cpp/lua/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,22 @@ + +# 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(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 +) diff --git a/library/cpp/lua/CMakeLists.darwin.txt b/library/cpp/lua/CMakeLists.darwin.txt deleted file mode 100644 index 7dc3bec75b..0000000000 --- a/library/cpp/lua/CMakeLists.darwin.txt +++ /dev/null @@ -1,22 +0,0 @@ - -# 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(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 -) diff --git a/library/cpp/lua/CMakeLists.linux-x86_64.txt b/library/cpp/lua/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..e32791dfac --- /dev/null +++ b/library/cpp/lua/CMakeLists.linux-x86_64.txt @@ -0,0 +1,23 @@ + +# 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(library-cpp-lua) +target_link_libraries(library-cpp-lua PUBLIC + contrib-libs-linux-headers + 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 +) diff --git a/library/cpp/lua/CMakeLists.linux.txt b/library/cpp/lua/CMakeLists.linux.txt deleted file mode 100644 index e32791dfac..0000000000 --- a/library/cpp/lua/CMakeLists.linux.txt +++ /dev/null @@ -1,23 +0,0 @@ - -# 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(library-cpp-lua) -target_link_libraries(library-cpp-lua PUBLIC - contrib-libs-linux-headers - 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 -) diff --git a/library/cpp/lua/CMakeLists.txt b/library/cpp/lua/CMakeLists.txt index eee324bb60..8f8c04afe5 100644 --- a/library/cpp/lua/CMakeLists.txt +++ b/library/cpp/lua/CMakeLists.txt @@ -9,7 +9,7 @@ if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND UNIX AND NOT APPLE AND NOT ANDROID) include(CMakeLists.linux-aarch64.txt) elseif (APPLE AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") - include(CMakeLists.darwin.txt) + include(CMakeLists.darwin-x86_64.txt) elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAVE_CUDA) - include(CMakeLists.linux.txt) + include(CMakeLists.linux-x86_64.txt) endif() -- cgit v1.2.3