diff options
author | svidyuk <svidyuk@yandex-team.com> | 2022-12-16 06:22:08 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2022-12-16 06:22:08 +0300 |
commit | a94445ea23010c0fccb3a231251d33cb69ac63d8 (patch) | |
tree | 1d0cf5ce16492f6942200008ec7c5ec5f29bb120 /library | |
parent | 3d8f5faccdca9e6301e9112e127e309a86de8d07 (diff) | |
download | ydb-a94445ea23010c0fccb3a231251d33cb69ac63d8.tar.gz |
Port build_info to py3
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/build_info/CMakeLists.darwin.txt | 4 | ||||
-rw-r--r-- | library/cpp/build_info/CMakeLists.linux-aarch64.txt | 4 | ||||
-rw-r--r-- | library/cpp/build_info/CMakeLists.linux.txt | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/build_info/CMakeLists.darwin.txt b/library/cpp/build_info/CMakeLists.darwin.txt index 4e8b5bedca..1308ae1ed6 100644 --- a/library/cpp/build_info/CMakeLists.darwin.txt +++ b/library/cpp/build_info/CMakeLists.darwin.txt @@ -6,7 +6,7 @@ # original buildsystem will not be accepted. -find_package(Python2 REQUIRED) +find_package(Python3 REQUIRED) add_library(library-cpp-build_info) target_include_directories(library-cpp-build_info PUBLIC @@ -29,7 +29,7 @@ add_custom_command( DEPENDS ${CMAKE_SOURCE_DIR}/build/scripts/build_info_gen.py COMMAND - Python2::Interpreter + Python3::Interpreter ${CMAKE_SOURCE_DIR}/build/scripts/build_info_gen.py ${CMAKE_BINARY_DIR}/library/cpp/build_info/buildinfo_data.h \"${CMAKE_CXX_COMPILER}\" diff --git a/library/cpp/build_info/CMakeLists.linux-aarch64.txt b/library/cpp/build_info/CMakeLists.linux-aarch64.txt index 23ee073bb7..71cca054b4 100644 --- a/library/cpp/build_info/CMakeLists.linux-aarch64.txt +++ b/library/cpp/build_info/CMakeLists.linux-aarch64.txt @@ -6,7 +6,7 @@ # original buildsystem will not be accepted. -find_package(Python2 REQUIRED) +find_package(Python3 REQUIRED) add_library(library-cpp-build_info) target_include_directories(library-cpp-build_info PUBLIC @@ -30,7 +30,7 @@ add_custom_command( DEPENDS ${CMAKE_SOURCE_DIR}/build/scripts/build_info_gen.py COMMAND - Python2::Interpreter + Python3::Interpreter ${CMAKE_SOURCE_DIR}/build/scripts/build_info_gen.py ${CMAKE_BINARY_DIR}/library/cpp/build_info/buildinfo_data.h \"${CMAKE_CXX_COMPILER}\" diff --git a/library/cpp/build_info/CMakeLists.linux.txt b/library/cpp/build_info/CMakeLists.linux.txt index 23ee073bb7..71cca054b4 100644 --- a/library/cpp/build_info/CMakeLists.linux.txt +++ b/library/cpp/build_info/CMakeLists.linux.txt @@ -6,7 +6,7 @@ # original buildsystem will not be accepted. -find_package(Python2 REQUIRED) +find_package(Python3 REQUIRED) add_library(library-cpp-build_info) target_include_directories(library-cpp-build_info PUBLIC @@ -30,7 +30,7 @@ add_custom_command( DEPENDS ${CMAKE_SOURCE_DIR}/build/scripts/build_info_gen.py COMMAND - Python2::Interpreter + Python3::Interpreter ${CMAKE_SOURCE_DIR}/build/scripts/build_info_gen.py ${CMAKE_BINARY_DIR}/library/cpp/build_info/buildinfo_data.h \"${CMAKE_CXX_COMPILER}\" |