aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/protoc/bin
diff options
context:
space:
mode:
authormonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
committermonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
commit06e5c21a835c0e923506c4ff27929f34e00761c2 (patch)
tree75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /contrib/tools/protoc/bin
parent03f024c4412e3aa613bb543cf1660176320ba8f4 (diff)
downloadydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz
fix ya.make
Diffstat (limited to 'contrib/tools/protoc/bin')
-rw-r--r--contrib/tools/protoc/bin/CMakeLists.txt2
-rw-r--r--contrib/tools/protoc/bin/ya.make26
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()