diff options
author | yuramalinov <yuramalinov@yandex-team.ru> | 2022-02-10 16:51:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:39 +0300 |
commit | 442de60c2e8e9c14db76bd72d8581780210d9847 (patch) | |
tree | 5a600efb42d80ec7972dd7f0e31041a3da8015bf | |
parent | 7596f6edf4e7a51ce70721b675235484ee69c5ba (diff) | |
download | ydb-442de60c2e8e9c14db76bd72d8581780210d9847.tar.gz |
Restoring authorship annotation for <yuramalinov@yandex-team.ru>. Commit 1 of 2.
-rw-r--r-- | build/plugins/java.py | 4 | ||||
-rw-r--r-- | build/ymake.core.conf | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/build/plugins/java.py b/build/plugins/java.py index 16fc126734..3e3eb9bc67 100644 --- a/build/plugins/java.py +++ b/build/plugins/java.py @@ -143,8 +143,8 @@ def onjava_module(unit, *args): data['WITH_KOTLIN'] = extract_macro_calls(unit, 'WITH_KOTLIN_VALUE', args_delim) if unit.get('KOTLIN_JVM_TARGET'): data['KOTLIN_JVM_TARGET'] = extract_macro_calls(unit, 'KOTLIN_JVM_TARGET', args_delim) - if unit.get('KOTLINC_FLAGS_VALUE'): - data['KOTLINC_FLAGS'] = extract_macro_calls(unit, 'KOTLINC_FLAGS_VALUE', args_delim) + if unit.get('KOTLINC_FLAGS_VALUE'): + data['KOTLINC_FLAGS'] = extract_macro_calls(unit, 'KOTLINC_FLAGS_VALUE', args_delim) if unit.get('KOTLINC_OPTS_VALUE'): data['KOTLINC_OPTS'] = extract_macro_calls(unit, 'KOTLINC_OPTS_VALUE', args_delim) diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 081833998b..33067c149d 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -4804,13 +4804,13 @@ macro WITH_GROOVY() { # tag:kotlin-specific KOTLINC_FLAGS_VALUE=-Xjvm-default=all -### @usage: KOTLINC_FLAGS(-flags) -### -### Set additional Kotlin compilation flags. -macro KOTLINC_FLAGS(Args...) { +### @usage: KOTLINC_FLAGS(-flags) +### +### Set additional Kotlin compilation flags. +macro KOTLINC_FLAGS(Args...) { SET_APPEND(KOTLINC_OPTS_VALUE $Args) -} - +} + # tag:kotlin-specific WITH_KOTLINC_PLUGIN_ALLOPEN= ### @usage: WITH_KOTLINC_ALLOPEN(-flags) |