-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace protoc, protobuf and gRPC libraries, TString and TStringBuf (#75
- Loading branch information
1 parent
be94cc4
commit 9e7c97a
Showing
7,894 changed files
with
12,946 additions
and
2,070,059 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,5 +20,5 @@ runs: | |
ccache -z | ||
export CCACHE_DIR=`~/.ccache` | ||
cd ../build | ||
ninja examples/all client/all | ||
ninja | ||
ccache -s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
# add_subdirectory(ut) | ||
|
||
# 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(cpp-client-draft) | ||
|
||
target_link_libraries(cpp-client-draft PUBLIC | ||
contrib-libs-cxxsupp | ||
yutil | ||
api-grpc-draft | ||
cpp-client-ydb_table | ||
client-ydb_types-operation | ||
cpp-client-ydb_value | ||
) | ||
target_sources(cpp-client-draft PRIVATE | ||
${CMAKE_SOURCE_DIR}/client/draft/ydb_dynamic_config.cpp | ||
${CMAKE_SOURCE_DIR}/client/draft/ydb_scripting.cpp | ||
${CMAKE_SOURCE_DIR}/client/draft/ydb_long_tx.cpp | ||
) | ||
|
||
if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA) | ||
include(CMakeLists.linux-x86_64.txt) | ||
elseif (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 (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64") | ||
include(CMakeLists.darwin-arm64.txt) | ||
elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA) | ||
include(CMakeLists.windows-x86_64.txt) | ||
if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND NOT HAVE_CUDA) | ||
target_link_libraries(cpp-client-draft PUBLIC | ||
contrib-libs-linux-headers | ||
) | ||
endif() |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.