aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake.core.conf
diff options
context:
space:
mode:
authorVladislav Rudskoy <rudskoy.vladislav@gmail.com>2022-02-10 16:45:39 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:39 +0300
commit40818269bfff82d9f57f47db333acbdda5c44fb0 (patch)
tree80b4c7c6300e95384218422adf3a140229b5372c /build/ymake.core.conf
parentbf9e69a933f89af083d895185f01ed65e4d90766 (diff)
downloadydb-40818269bfff82d9f57f47db333acbdda5c44fb0.tar.gz
Restoring authorship annotation for Vladislav Rudskoy <rudskoy.vladislav@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r--build/ymake.core.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf
index 081833998b..e1ea3c4c92 100644
--- a/build/ymake.core.conf
+++ b/build/ymake.core.conf
@@ -2421,7 +2421,7 @@ CMAKE_LINK_TARGET=$REALPRJNAME
CMAKE_FIND_PKG_COMP=
CONAN_REQUIRE=
-### @usage: LIBRARY()
+### @usage: LIBRARY()
###
### The regular static library module.
###
@@ -4705,7 +4705,7 @@ JAVA_SRCS_VALUE=
### @usage: JAVA_SRCS(srcs)
###
### Specify java source files and resources. A macro can be contained in any of four java modules.
-### Keywords:
+### Keywords:
### 1. X SRCDIR - specify the directory x is performed relatively to search the source code for these patterns. If there is no SRCDIR, the source will be searched relative to the module directory.
### 2. PACKAGE_PREFIX x - use if source paths relative to the SRCDIR does not coincide with the full class names. For example, if all sources of module are in the same package, you can create a directory package/name , and just put the source code in the SRCDIR and specify PACKAGE_PREFIX package.name.
###
@@ -4725,7 +4725,7 @@ JAVA_SRCS_VALUE=
### }
### }
###
-### Documentation: https://wiki.yandex-team.ru/yatool/java/#javasrcs
+### Documentation: https://wiki.yandex-team.ru/yatool/java/#javasrcs
macro JAVA_SRCS(Args...) {
SET_APPEND(JAVA_SRCS_VALUE $ARGS_DELIM $Args)
}
@@ -4766,7 +4766,7 @@ DEPENDENCY_MANAGEMENT_VALUE=
### there the maximum version available in contrib/java.
###
### The property is transitive. That is, if module A PEERDIRs module B, and B has PEERDIR(contrib/java/junit/junit), and this junit was replaced by junit-4.12, then junit-4.12 will come to A through B.
-###
+###
### If some module has both DEPENDENCY_MANAGEMENT(contrib/java/junit/junit/4.12) and PERDIR(contrib/java/junit/junit/4.11), the PEERDIR wins.
###
### Documentation: https://wiki.yandex-team.ru/yatool/java/