diff options
author | vvvv <vvvv@ydb.tech> | 2023-07-31 18:21:04 +0300 |
---|---|---|
committer | vvvv <vvvv@ydb.tech> | 2023-07-31 18:21:04 +0300 |
commit | dec41c40e51aa407edef81a3c566a5a15780fc49 (patch) | |
tree | 4f197b596b32f35eca368121f0dff913419da9af /geobase/library | |
parent | 3ca8b54c96e09eb2b65be7f09675623438d559c7 (diff) | |
download | ydb-dec41c40e51aa407edef81a3c566a5a15780fc49.tar.gz |
YQL-16239 Move purecalc to public
Diffstat (limited to 'geobase/library')
46 files changed, 1270 insertions, 0 deletions
diff --git a/geobase/library/CMakeLists.darwin-x86_64.txt b/geobase/library/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..7257bb9ee1 --- /dev/null +++ b/geobase/library/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_subdirectory(abi) +add_subdirectory(api) +add_subdirectory(city_id_calc) +add_subdirectory(db) +add_subdirectory(dispute_regs) +add_subdirectory(utils) + +add_library(geobase-library INTERFACE) +target_link_libraries(geobase-library INTERFACE + contrib-libs-cxxsupp + yutil + geobase-library-api + library-db-stub +) diff --git a/geobase/library/CMakeLists.linux-aarch64.txt b/geobase/library/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..8a01a727c4 --- /dev/null +++ b/geobase/library/CMakeLists.linux-aarch64.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_subdirectory(abi) +add_subdirectory(api) +add_subdirectory(city_id_calc) +add_subdirectory(db) +add_subdirectory(dispute_regs) +add_subdirectory(utils) + +add_library(geobase-library INTERFACE) +target_link_libraries(geobase-library INTERFACE + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + geobase-library-api + library-db-stub +) diff --git a/geobase/library/CMakeLists.linux-x86_64.txt b/geobase/library/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..8a01a727c4 --- /dev/null +++ b/geobase/library/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_subdirectory(abi) +add_subdirectory(api) +add_subdirectory(city_id_calc) +add_subdirectory(db) +add_subdirectory(dispute_regs) +add_subdirectory(utils) + +add_library(geobase-library INTERFACE) +target_link_libraries(geobase-library INTERFACE + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + geobase-library-api + library-db-stub +) diff --git a/geobase/library/CMakeLists.txt b/geobase/library/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/CMakeLists.windows-x86_64.txt b/geobase/library/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..7257bb9ee1 --- /dev/null +++ b/geobase/library/CMakeLists.windows-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_subdirectory(abi) +add_subdirectory(api) +add_subdirectory(city_id_calc) +add_subdirectory(db) +add_subdirectory(dispute_regs) +add_subdirectory(utils) + +add_library(geobase-library INTERFACE) +target_link_libraries(geobase-library INTERFACE + contrib-libs-cxxsupp + yutil + geobase-library-api + library-db-stub +) diff --git a/geobase/library/abi/CMakeLists.darwin-x86_64.txt b/geobase/library/abi/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..9c18e158b2 --- /dev/null +++ b/geobase/library/abi/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,56 @@ + +# 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(geobase-library-abi) +target_compile_options(geobase-library-abi PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_include_directories(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/user-settings/include +) +target_link_libraries(geobase-library-abi PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-cctz + geobase-library-city_id_calc + geobase-library-dispute_regs + geobase-library-utils + geobase-user-settings + library-cpp-geohash + library-cpp-json + cpp-reverse_geocoder-core +) +target_sources(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/asset.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/as_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_reader.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_format_internals.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/borders_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_isp_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_traits_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/isp_names_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/fake_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_type.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_types_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_fields_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_locale_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/resource_base.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/structs_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/tor_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v4.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v6.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_point_distance.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree_search.cpp +) diff --git a/geobase/library/abi/CMakeLists.linux-aarch64.txt b/geobase/library/abi/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..e5370f291c --- /dev/null +++ b/geobase/library/abi/CMakeLists.linux-aarch64.txt @@ -0,0 +1,57 @@ + +# 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(geobase-library-abi) +target_compile_options(geobase-library-abi PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_include_directories(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/user-settings/include +) +target_link_libraries(geobase-library-abi PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + contrib-libs-cctz + geobase-library-city_id_calc + geobase-library-dispute_regs + geobase-library-utils + geobase-user-settings + library-cpp-geohash + library-cpp-json + cpp-reverse_geocoder-core +) +target_sources(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/asset.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/as_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_reader.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_format_internals.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/borders_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_isp_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_traits_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/isp_names_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/fake_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_type.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_types_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_fields_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_locale_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/resource_base.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/structs_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/tor_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v4.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v6.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_point_distance.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree_search.cpp +) diff --git a/geobase/library/abi/CMakeLists.linux-x86_64.txt b/geobase/library/abi/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..e5370f291c --- /dev/null +++ b/geobase/library/abi/CMakeLists.linux-x86_64.txt @@ -0,0 +1,57 @@ + +# 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(geobase-library-abi) +target_compile_options(geobase-library-abi PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_include_directories(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/user-settings/include +) +target_link_libraries(geobase-library-abi PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + contrib-libs-cctz + geobase-library-city_id_calc + geobase-library-dispute_regs + geobase-library-utils + geobase-user-settings + library-cpp-geohash + library-cpp-json + cpp-reverse_geocoder-core +) +target_sources(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/asset.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/as_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_reader.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_format_internals.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/borders_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_isp_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_traits_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/isp_names_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/fake_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_type.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_types_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_fields_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_locale_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/resource_base.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/structs_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/tor_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v4.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v6.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_point_distance.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree_search.cpp +) diff --git a/geobase/library/abi/CMakeLists.txt b/geobase/library/abi/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/abi/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/abi/CMakeLists.windows-x86_64.txt b/geobase/library/abi/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..9c18e158b2 --- /dev/null +++ b/geobase/library/abi/CMakeLists.windows-x86_64.txt @@ -0,0 +1,56 @@ + +# 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(geobase-library-abi) +target_compile_options(geobase-library-abi PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_include_directories(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/user-settings/include +) +target_link_libraries(geobase-library-abi PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-cctz + geobase-library-city_id_calc + geobase-library-dispute_regs + geobase-library-utils + geobase-user-settings + library-cpp-geohash + library-cpp-json + cpp-reverse_geocoder-core +) +target_sources(geobase-library-abi PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/asset.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/as_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_reader.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/binary_format_internals.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/borders_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_isp_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/ipreg_traits_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/isp_names_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/fake_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_impl_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_type.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_types_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/region_fields_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/regions_locale_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/resource_base.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/structs_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter_impl.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/tor_resource.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v4.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/v6.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_point_distance.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/vp_tree_search.cpp +) diff --git a/geobase/library/api/CMakeLists.darwin-x86_64.txt b/geobase/library/api/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..e7d1812621 --- /dev/null +++ b/geobase/library/api/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,25 @@ + +# 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(geobase-library-api) +target_compile_options(geobase-library-api PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-api PUBLIC + contrib-libs-cxxsupp + yutil + geobase-library-abi +) +target_sources(geobase-library-api PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/lookup.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_wrapper.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/service_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/known_tz_list.cpp +) diff --git a/geobase/library/api/CMakeLists.linux-aarch64.txt b/geobase/library/api/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..40ecd7c759 --- /dev/null +++ b/geobase/library/api/CMakeLists.linux-aarch64.txt @@ -0,0 +1,26 @@ + +# 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(geobase-library-api) +target_compile_options(geobase-library-api PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-api PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + geobase-library-abi +) +target_sources(geobase-library-api PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/lookup.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_wrapper.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/service_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/known_tz_list.cpp +) diff --git a/geobase/library/api/CMakeLists.linux-x86_64.txt b/geobase/library/api/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..40ecd7c759 --- /dev/null +++ b/geobase/library/api/CMakeLists.linux-x86_64.txt @@ -0,0 +1,26 @@ + +# 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(geobase-library-api) +target_compile_options(geobase-library-api PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-api PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + geobase-library-abi +) +target_sources(geobase-library-api PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/lookup.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_wrapper.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/service_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/known_tz_list.cpp +) diff --git a/geobase/library/api/CMakeLists.txt b/geobase/library/api/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/api/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/api/CMakeLists.windows-x86_64.txt b/geobase/library/api/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..e7d1812621 --- /dev/null +++ b/geobase/library/api/CMakeLists.windows-x86_64.txt @@ -0,0 +1,25 @@ + +# 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(geobase-library-api) +target_compile_options(geobase-library-api PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-api PUBLIC + contrib-libs-cxxsupp + yutil + geobase-library-abi +) +target_sources(geobase-library-api PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/lookup.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/lookup_wrapper.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/service_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/timezone_getter.cpp + ${CMAKE_SOURCE_DIR}/geobase/library/known_tz_list.cpp +) diff --git a/geobase/library/city_id_calc/CMakeLists.darwin-x86_64.txt b/geobase/library/city_id_calc/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..5859e8c377 --- /dev/null +++ b/geobase/library/city_id_calc/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,20 @@ + +# 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(geobase-library-city_id_calc) +target_compile_options(geobase-library-city_id_calc PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-city_id_calc PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(geobase-library-city_id_calc PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/city_id_calc/city_id_base.cpp +) diff --git a/geobase/library/city_id_calc/CMakeLists.linux-aarch64.txt b/geobase/library/city_id_calc/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..799c117c73 --- /dev/null +++ b/geobase/library/city_id_calc/CMakeLists.linux-aarch64.txt @@ -0,0 +1,21 @@ + +# 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(geobase-library-city_id_calc) +target_compile_options(geobase-library-city_id_calc PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-city_id_calc PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil +) +target_sources(geobase-library-city_id_calc PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/city_id_calc/city_id_base.cpp +) diff --git a/geobase/library/city_id_calc/CMakeLists.linux-x86_64.txt b/geobase/library/city_id_calc/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..799c117c73 --- /dev/null +++ b/geobase/library/city_id_calc/CMakeLists.linux-x86_64.txt @@ -0,0 +1,21 @@ + +# 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(geobase-library-city_id_calc) +target_compile_options(geobase-library-city_id_calc PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-city_id_calc PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil +) +target_sources(geobase-library-city_id_calc PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/city_id_calc/city_id_base.cpp +) diff --git a/geobase/library/city_id_calc/CMakeLists.txt b/geobase/library/city_id_calc/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/city_id_calc/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/city_id_calc/CMakeLists.windows-x86_64.txt b/geobase/library/city_id_calc/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..5859e8c377 --- /dev/null +++ b/geobase/library/city_id_calc/CMakeLists.windows-x86_64.txt @@ -0,0 +1,20 @@ + +# 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(geobase-library-city_id_calc) +target_compile_options(geobase-library-city_id_calc PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-city_id_calc PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(geobase-library-city_id_calc PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/city_id_calc/city_id_base.cpp +) diff --git a/geobase/library/db/CMakeLists.txt b/geobase/library/db/CMakeLists.txt new file mode 100644 index 0000000000..70fc7a172d --- /dev/null +++ b/geobase/library/db/CMakeLists.txt @@ -0,0 +1,9 @@ + +# 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_subdirectory(stub) diff --git a/geobase/library/db/stub/CMakeLists.darwin-x86_64.txt b/geobase/library/db/stub/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..4960807960 --- /dev/null +++ b/geobase/library/db/stub/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,21 @@ + +# 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-db-stub) +target_compile_options(library-db-stub PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(library-db-stub PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_sources(library-db-stub PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/db/stub/db_resources_internals_stub.cpp +) diff --git a/geobase/library/db/stub/CMakeLists.linux-aarch64.txt b/geobase/library/db/stub/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..4c10cc50ef --- /dev/null +++ b/geobase/library/db/stub/CMakeLists.linux-aarch64.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-db-stub) +target_compile_options(library-db-stub PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(library-db-stub PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_sources(library-db-stub PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/db/stub/db_resources_internals_stub.cpp +) diff --git a/geobase/library/db/stub/CMakeLists.linux-x86_64.txt b/geobase/library/db/stub/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..4c10cc50ef --- /dev/null +++ b/geobase/library/db/stub/CMakeLists.linux-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-db-stub) +target_compile_options(library-db-stub PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(library-db-stub PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_sources(library-db-stub PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/db/stub/db_resources_internals_stub.cpp +) diff --git a/geobase/library/db/stub/CMakeLists.txt b/geobase/library/db/stub/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/db/stub/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/db/stub/CMakeLists.windows-x86_64.txt b/geobase/library/db/stub/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..4960807960 --- /dev/null +++ b/geobase/library/db/stub/CMakeLists.windows-x86_64.txt @@ -0,0 +1,21 @@ + +# 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-db-stub) +target_compile_options(library-db-stub PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(library-db-stub PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_sources(library-db-stub PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/db/stub/db_resources_internals_stub.cpp +) diff --git a/geobase/library/dispute_regs/CMakeLists.darwin-x86_64.txt b/geobase/library/dispute_regs/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..30cef124f7 --- /dev/null +++ b/geobase/library/dispute_regs/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,24 @@ + +# 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_subdirectory(proto) +add_subdirectory(resource) + +add_library(geobase-library-dispute_regs) +target_link_libraries(geobase-library-dispute_regs PUBLIC + contrib-libs-cxxsupp + yutil + library-dispute_regs-proto + library-dispute_regs-resource + cpp-protobuf-json + library-cpp-json + library-cpp-resource +) +target_sources(geobase-library-dispute_regs PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/config.cpp +) diff --git a/geobase/library/dispute_regs/CMakeLists.linux-aarch64.txt b/geobase/library/dispute_regs/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..769eac8567 --- /dev/null +++ b/geobase/library/dispute_regs/CMakeLists.linux-aarch64.txt @@ -0,0 +1,25 @@ + +# 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_subdirectory(proto) +add_subdirectory(resource) + +add_library(geobase-library-dispute_regs) +target_link_libraries(geobase-library-dispute_regs PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + library-dispute_regs-proto + library-dispute_regs-resource + cpp-protobuf-json + library-cpp-json + library-cpp-resource +) +target_sources(geobase-library-dispute_regs PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/config.cpp +) diff --git a/geobase/library/dispute_regs/CMakeLists.linux-x86_64.txt b/geobase/library/dispute_regs/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..769eac8567 --- /dev/null +++ b/geobase/library/dispute_regs/CMakeLists.linux-x86_64.txt @@ -0,0 +1,25 @@ + +# 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_subdirectory(proto) +add_subdirectory(resource) + +add_library(geobase-library-dispute_regs) +target_link_libraries(geobase-library-dispute_regs PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + library-dispute_regs-proto + library-dispute_regs-resource + cpp-protobuf-json + library-cpp-json + library-cpp-resource +) +target_sources(geobase-library-dispute_regs PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/config.cpp +) diff --git a/geobase/library/dispute_regs/CMakeLists.txt b/geobase/library/dispute_regs/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/dispute_regs/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/dispute_regs/CMakeLists.windows-x86_64.txt b/geobase/library/dispute_regs/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..30cef124f7 --- /dev/null +++ b/geobase/library/dispute_regs/CMakeLists.windows-x86_64.txt @@ -0,0 +1,24 @@ + +# 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_subdirectory(proto) +add_subdirectory(resource) + +add_library(geobase-library-dispute_regs) +target_link_libraries(geobase-library-dispute_regs PUBLIC + contrib-libs-cxxsupp + yutil + library-dispute_regs-proto + library-dispute_regs-resource + cpp-protobuf-json + library-cpp-json + library-cpp-resource +) +target_sources(geobase-library-dispute_regs PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/config.cpp +) diff --git a/geobase/library/dispute_regs/proto/CMakeLists.darwin-x86_64.txt b/geobase/library/dispute_regs/proto/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..d2fb124680 --- /dev/null +++ b/geobase/library/dispute_regs/proto/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,43 @@ + +# 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. + + +get_built_tool_path( + TOOL_protoc_bin + TOOL_protoc_dependency + contrib/tools/protoc/bin + protoc +) +get_built_tool_path( + TOOL_cpp_styleguide_bin + TOOL_cpp_styleguide_dependency + contrib/tools/protoc/plugins/cpp_styleguide + cpp_styleguide +) + +add_library(library-dispute_regs-proto) +target_link_libraries(library-dispute_regs-proto PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_proto_messages(library-dispute_regs-proto PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/proto/config.proto +) +target_proto_addincls(library-dispute_regs-proto + ./ + ${CMAKE_SOURCE_DIR}/ + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src +) +target_proto_outs(library-dispute_regs-proto + --cpp_out=${CMAKE_BINARY_DIR}/ + --cpp_styleguide_out=${CMAKE_BINARY_DIR}/ +) diff --git a/geobase/library/dispute_regs/proto/CMakeLists.linux-aarch64.txt b/geobase/library/dispute_regs/proto/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..998b76e8c7 --- /dev/null +++ b/geobase/library/dispute_regs/proto/CMakeLists.linux-aarch64.txt @@ -0,0 +1,44 @@ + +# 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. + + +get_built_tool_path( + TOOL_protoc_bin + TOOL_protoc_dependency + contrib/tools/protoc/bin + protoc +) +get_built_tool_path( + TOOL_cpp_styleguide_bin + TOOL_cpp_styleguide_dependency + contrib/tools/protoc/plugins/cpp_styleguide + cpp_styleguide +) + +add_library(library-dispute_regs-proto) +target_link_libraries(library-dispute_regs-proto PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_proto_messages(library-dispute_regs-proto PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/proto/config.proto +) +target_proto_addincls(library-dispute_regs-proto + ./ + ${CMAKE_SOURCE_DIR}/ + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src +) +target_proto_outs(library-dispute_regs-proto + --cpp_out=${CMAKE_BINARY_DIR}/ + --cpp_styleguide_out=${CMAKE_BINARY_DIR}/ +) diff --git a/geobase/library/dispute_regs/proto/CMakeLists.linux-x86_64.txt b/geobase/library/dispute_regs/proto/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..998b76e8c7 --- /dev/null +++ b/geobase/library/dispute_regs/proto/CMakeLists.linux-x86_64.txt @@ -0,0 +1,44 @@ + +# 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. + + +get_built_tool_path( + TOOL_protoc_bin + TOOL_protoc_dependency + contrib/tools/protoc/bin + protoc +) +get_built_tool_path( + TOOL_cpp_styleguide_bin + TOOL_cpp_styleguide_dependency + contrib/tools/protoc/plugins/cpp_styleguide + cpp_styleguide +) + +add_library(library-dispute_regs-proto) +target_link_libraries(library-dispute_regs-proto PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_proto_messages(library-dispute_regs-proto PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/proto/config.proto +) +target_proto_addincls(library-dispute_regs-proto + ./ + ${CMAKE_SOURCE_DIR}/ + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src +) +target_proto_outs(library-dispute_regs-proto + --cpp_out=${CMAKE_BINARY_DIR}/ + --cpp_styleguide_out=${CMAKE_BINARY_DIR}/ +) diff --git a/geobase/library/dispute_regs/proto/CMakeLists.txt b/geobase/library/dispute_regs/proto/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/dispute_regs/proto/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/dispute_regs/proto/CMakeLists.windows-x86_64.txt b/geobase/library/dispute_regs/proto/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..d2fb124680 --- /dev/null +++ b/geobase/library/dispute_regs/proto/CMakeLists.windows-x86_64.txt @@ -0,0 +1,43 @@ + +# 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. + + +get_built_tool_path( + TOOL_protoc_bin + TOOL_protoc_dependency + contrib/tools/protoc/bin + protoc +) +get_built_tool_path( + TOOL_cpp_styleguide_bin + TOOL_cpp_styleguide_dependency + contrib/tools/protoc/plugins/cpp_styleguide + cpp_styleguide +) + +add_library(library-dispute_regs-proto) +target_link_libraries(library-dispute_regs-proto PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-protobuf +) +target_proto_messages(library-dispute_regs-proto PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/proto/config.proto +) +target_proto_addincls(library-dispute_regs-proto + ./ + ${CMAKE_SOURCE_DIR}/ + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src +) +target_proto_outs(library-dispute_regs-proto + --cpp_out=${CMAKE_BINARY_DIR}/ + --cpp_styleguide_out=${CMAKE_BINARY_DIR}/ +) diff --git a/geobase/library/dispute_regs/resource/CMakeLists.darwin-x86_64.txt b/geobase/library/dispute_regs/resource/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..76aa5d01ef --- /dev/null +++ b/geobase/library/dispute_regs/resource/CMakeLists.darwin-x86_64.txt @@ -0,0 +1,38 @@ + +# 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. + + +get_built_tool_path( + TOOL_rescompiler_bin + TOOL_rescompiler_dependency + tools/rescompiler/bin + rescompiler +) + +add_library(library-dispute_regs-resource INTERFACE) +target_link_libraries(library-dispute_regs-resource INTERFACE + contrib-libs-cxxsupp + yutil + library-cpp-resource +) + +add_global_library_for(library-dispute_regs-resource.global library-dispute_regs-resource) +target_link_libraries(library-dispute_regs-resource.global PUBLIC + contrib-libs-cxxsupp + yutil + library-cpp-resource +) +target_sources(library-dispute_regs-resource.global PRIVATE + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp +) +resources(library-dispute_regs-resource.global + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp + INPUTS + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/resource/config.json + KEYS + /geobase/dispute-config +) diff --git a/geobase/library/dispute_regs/resource/CMakeLists.linux-aarch64.txt b/geobase/library/dispute_regs/resource/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..7587a04962 --- /dev/null +++ b/geobase/library/dispute_regs/resource/CMakeLists.linux-aarch64.txt @@ -0,0 +1,40 @@ + +# 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. + + +get_built_tool_path( + TOOL_rescompiler_bin + TOOL_rescompiler_dependency + tools/rescompiler/bin + rescompiler +) + +add_library(library-dispute_regs-resource INTERFACE) +target_link_libraries(library-dispute_regs-resource INTERFACE + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + library-cpp-resource +) + +add_global_library_for(library-dispute_regs-resource.global library-dispute_regs-resource) +target_link_libraries(library-dispute_regs-resource.global PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + library-cpp-resource +) +target_sources(library-dispute_regs-resource.global PRIVATE + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp +) +resources(library-dispute_regs-resource.global + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp + INPUTS + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/resource/config.json + KEYS + /geobase/dispute-config +) diff --git a/geobase/library/dispute_regs/resource/CMakeLists.linux-x86_64.txt b/geobase/library/dispute_regs/resource/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..7587a04962 --- /dev/null +++ b/geobase/library/dispute_regs/resource/CMakeLists.linux-x86_64.txt @@ -0,0 +1,40 @@ + +# 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. + + +get_built_tool_path( + TOOL_rescompiler_bin + TOOL_rescompiler_dependency + tools/rescompiler/bin + rescompiler +) + +add_library(library-dispute_regs-resource INTERFACE) +target_link_libraries(library-dispute_regs-resource INTERFACE + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + library-cpp-resource +) + +add_global_library_for(library-dispute_regs-resource.global library-dispute_regs-resource) +target_link_libraries(library-dispute_regs-resource.global PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + library-cpp-resource +) +target_sources(library-dispute_regs-resource.global PRIVATE + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp +) +resources(library-dispute_regs-resource.global + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp + INPUTS + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/resource/config.json + KEYS + /geobase/dispute-config +) diff --git a/geobase/library/dispute_regs/resource/CMakeLists.txt b/geobase/library/dispute_regs/resource/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/dispute_regs/resource/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/dispute_regs/resource/CMakeLists.windows-x86_64.txt b/geobase/library/dispute_regs/resource/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..76aa5d01ef --- /dev/null +++ b/geobase/library/dispute_regs/resource/CMakeLists.windows-x86_64.txt @@ -0,0 +1,38 @@ + +# 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. + + +get_built_tool_path( + TOOL_rescompiler_bin + TOOL_rescompiler_dependency + tools/rescompiler/bin + rescompiler +) + +add_library(library-dispute_regs-resource INTERFACE) +target_link_libraries(library-dispute_regs-resource INTERFACE + contrib-libs-cxxsupp + yutil + library-cpp-resource +) + +add_global_library_for(library-dispute_regs-resource.global library-dispute_regs-resource) +target_link_libraries(library-dispute_regs-resource.global PUBLIC + contrib-libs-cxxsupp + yutil + library-cpp-resource +) +target_sources(library-dispute_regs-resource.global PRIVATE + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp +) +resources(library-dispute_regs-resource.global + ${CMAKE_BINARY_DIR}/geobase/library/dispute_regs/resource/06b2d3b23dce96e1619d2b53d6c947ec.cpp + INPUTS + ${CMAKE_SOURCE_DIR}/geobase/library/dispute_regs/resource/config.json + KEYS + /geobase/dispute-config +) diff --git a/geobase/library/utils/CMakeLists.darwin-x86_64.txt b/geobase/library/utils/CMakeLists.darwin-x86_64.txt new file mode 100644 index 0000000000..41b801b27f --- /dev/null +++ b/geobase/library/utils/CMakeLists.darwin-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. + + +find_package(OpenSSL REQUIRED) + +add_library(geobase-library-utils) +target_compile_options(geobase-library-utils PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-utils PUBLIC + contrib-libs-cxxsupp + yutil + OpenSSL::OpenSSL + contrib-libs-protobuf +) +target_sources(geobase-library-utils PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/utils/builder_utils.cpp +) diff --git a/geobase/library/utils/CMakeLists.linux-aarch64.txt b/geobase/library/utils/CMakeLists.linux-aarch64.txt new file mode 100644 index 0000000000..b6478526df --- /dev/null +++ b/geobase/library/utils/CMakeLists.linux-aarch64.txt @@ -0,0 +1,24 @@ + +# 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. + + +find_package(OpenSSL REQUIRED) + +add_library(geobase-library-utils) +target_compile_options(geobase-library-utils PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-utils PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + OpenSSL::OpenSSL + contrib-libs-protobuf +) +target_sources(geobase-library-utils PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/utils/builder_utils.cpp +) diff --git a/geobase/library/utils/CMakeLists.linux-x86_64.txt b/geobase/library/utils/CMakeLists.linux-x86_64.txt new file mode 100644 index 0000000000..b6478526df --- /dev/null +++ b/geobase/library/utils/CMakeLists.linux-x86_64.txt @@ -0,0 +1,24 @@ + +# 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. + + +find_package(OpenSSL REQUIRED) + +add_library(geobase-library-utils) +target_compile_options(geobase-library-utils PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-utils PUBLIC + contrib-libs-linux-headers + contrib-libs-cxxsupp + yutil + OpenSSL::OpenSSL + contrib-libs-protobuf +) +target_sources(geobase-library-utils PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/utils/builder_utils.cpp +) diff --git a/geobase/library/utils/CMakeLists.txt b/geobase/library/utils/CMakeLists.txt new file mode 100644 index 0000000000..f8b31df0c1 --- /dev/null +++ b/geobase/library/utils/CMakeLists.txt @@ -0,0 +1,17 @@ + +# 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. + + +if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-aarch64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + include(CMakeLists.darwin-x86_64.txt) +elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) + include(CMakeLists.windows-x86_64.txt) +elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) + include(CMakeLists.linux-x86_64.txt) +endif() diff --git a/geobase/library/utils/CMakeLists.windows-x86_64.txt b/geobase/library/utils/CMakeLists.windows-x86_64.txt new file mode 100644 index 0000000000..41b801b27f --- /dev/null +++ b/geobase/library/utils/CMakeLists.windows-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. + + +find_package(OpenSSL REQUIRED) + +add_library(geobase-library-utils) +target_compile_options(geobase-library-utils PRIVATE + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> +) +target_link_libraries(geobase-library-utils PUBLIC + contrib-libs-cxxsupp + yutil + OpenSSL::OpenSSL + contrib-libs-protobuf +) +target_sources(geobase-library-utils PRIVATE + ${CMAKE_SOURCE_DIR}/geobase/library/utils/builder_utils.cpp +) |