aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake.core.conf
diff options
context:
space:
mode:
authormcheshkov <mcheshkov@yandex-team.ru>2022-02-10 16:46:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:15 +0300
commite9d19cec64684c9c1e6b0c98297e5b895cf904fe (patch)
tree2768b1223e96a8a0610a93d18425d9647c1123c8 /build/ymake.core.conf
parent60040c91ffe701a84689b2c6310ff845e65cff42 (diff)
downloadydb-e9d19cec64684c9c1e6b0c98297e5b895cf904fe.tar.gz
Restoring authorship annotation for <mcheshkov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r--build/ymake.core.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf
index 081833998b..81cce3a276 100644
--- a/build/ymake.core.conf
+++ b/build/ymake.core.conf
@@ -6149,7 +6149,7 @@ macro SRC(FILE, FLAGS...) {
### Arcadia Paths from the root and is relative to the project's LIST are supported
###
### GLOBAL marks next file as direct input to link phase of the program/shared library project built into. This prevents symbols of the file to be excluded by linker as unused.
-### The scope of the GLOBAL keyword is the following file (that is, in the case of SRCS(GLOBAL foo.cpp bar.cpp) global will be only foo.cpp)
+### The scope of the GLOBAL keyword is the following file (that is, in the case of SRCS(GLOBAL foo.cpp bar.cpp) global will be only foo.cpp)
###
### @example:
###
@@ -7147,8 +7147,8 @@ CLANG_ROOT=$CLANG_RESOURCE_GLOBAL
###
### srcs... - list of text files which will be generated during build time by templates. Each template must be
### placed to the place in source tree where corresponding source file should be generated. Name of
-### template must be "<name_of_src_file>.markettemplate". For example if you want to generate file "example.cpp"
-### then template should be named "example.cpp.markettemplate".
+### template must be "<name_of_src_file>.markettemplate". For example if you want to generate file "example.cpp"
+### then template should be named "example.cpp.markettemplate".
### PARSE_META_FROM cpp_srcs... - list of C++ source files (.cpp, .h) which will be parsed using clang library
### and metainformation extracted from the files will be made available for templates. Example of
### template code fragment using metainformation: {{ meta.objects["@N@std@S@string"].name }}