diff options
author | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
---|---|---|
committer | monster <monster@ydb.tech> | 2022-07-07 14:41:37 +0300 |
commit | 06e5c21a835c0e923506c4ff27929f34e00761c2 (patch) | |
tree | 75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /contrib/tools/protoc/bin | |
parent | 03f024c4412e3aa613bb543cf1660176320ba8f4 (diff) | |
download | ydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz |
fix ya.make
Diffstat (limited to 'contrib/tools/protoc/bin')
-rw-r--r-- | contrib/tools/protoc/bin/CMakeLists.txt | 2 | ||||
-rw-r--r-- | contrib/tools/protoc/bin/ya.make | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/contrib/tools/protoc/bin/CMakeLists.txt b/contrib/tools/protoc/bin/CMakeLists.txt index fc7b1ee73c..a681d385f3 100644 --- a/contrib/tools/protoc/bin/CMakeLists.txt +++ b/contrib/tools/protoc/bin/CMakeLists.txt @@ -8,6 +8,6 @@ if (APPLE) include(CMakeLists.darwin.txt) -elseif (UNIX AND NOT APPLE) +elseif (UNIX) include(CMakeLists.linux.txt) endif() diff --git a/contrib/tools/protoc/bin/ya.make b/contrib/tools/protoc/bin/ya.make new file mode 100644 index 0000000000..f9e74f5e4c --- /dev/null +++ b/contrib/tools/protoc/bin/ya.make @@ -0,0 +1,26 @@ +PROGRAM(protoc) + +OWNER( + velavokr + g:contrib + g:cpp-contrib +) + +LICENSE(BSD-3-Clause) + +NO_COMPILER_WARNINGS() + +PEERDIR( + contrib/libs/protoc +) +SRCDIR( + contrib/libs/protoc +) + +SRCS( + src/google/protobuf/compiler/main.cc +) + +INCLUDE(${ARCADIA_ROOT}/build/prebuilt/contrib/tools/protoc/ya.make.induced_deps) + +END() |