diff options
| author | svidyuk <[email protected]> | 2023-08-23 08:01:54 +0300 | 
|---|---|---|
| committer | svidyuk <[email protected]> | 2023-08-23 08:21:39 +0300 | 
| commit | eeac38535bea2c330e178cfbe3fab94172aeaeca (patch) | |
| tree | d64e520c8864d880ac3fc2c0e4e8d9651c2bb155 | |
| parent | 5106e6f7baa65bfe16c2e58954b80bcbd6193d36 (diff) | |
Remove forgotten global vars propagation
| -rw-r--r-- | build/conf/fbs.conf | 2 | ||||
| -rw-r--r-- | cmake/global_vars.cmake | 8 | 
2 files changed, 5 insertions, 5 deletions
diff --git a/build/conf/fbs.conf b/build/conf/fbs.conf index 2088c7abedc..0c92bd9e347 100644 --- a/build/conf/fbs.conf +++ b/build/conf/fbs.conf @@ -36,7 +36,7 @@ _GO_FLATC_IMPORTS=\  # tag:fbs tag:cpp-specific  macro _CPP_FLATC_CMD(SRC, SRCFLAGS...) {      .CMD=${cwd:ARCADIA_BUILD_ROOT} $YMAKE_PYTHON3 ${input:"build/scripts/cpp_flatc_wrapper.py"} ${tool:"contrib/tools/flatc"} --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs ${FLATC_FLAGS_VALUE} ${pre=-I :_FLATC__INCLUDE} -o ${output;norel:SRC.h} ${output;hide;norel:SRC.cpp} ${input:SRC} ${output;hide;noext;norel:SRC.iter.fbs.h} ${output;noauto;hide;noext;norel:SRC.bfbs} ${kv;hide:"p FL"} ${kv;hide:"pc light-green"} ${hide:FBS_FAKEID} -    .SEM=target_fbs_source PRIVATE ${input:SRC} ${FLATC_FLAGS_VALUE} ${pre=-I :_FLATC__INCLUDE} ${output;hide;norel:SRC.h} ${output;hide;norel:SRC.cpp} ${output;hide;noext;norel:SRC.iter.fbs.h} ${output;noauto;hide;noext;norel:SRC.bfbs} ${hide;tool:"contrib/tools/flatc/bin"} && set_global_flags FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs ${FLATC_FLAGS_VALUE} ${input;hide:"build/scripts/cpp_flatc_wrapper.py"} +    .SEM=target_fbs_source PRIVATE ${input:SRC} ${FLATC_FLAGS_VALUE} ${pre=-I :_FLATC__INCLUDE} ${output;hide;norel:SRC.h} ${output;hide;norel:SRC.cpp} ${output;hide;noext;norel:SRC.iter.fbs.h} ${output;noauto;hide;noext;norel:SRC.bfbs} ${hide;tool:"contrib/tools/flatc/bin"} && set_global_flags FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs ${input;hide:"build/scripts/cpp_flatc_wrapper.py"}      .PEERDIR=contrib/libs/flatbuffers  } diff --git a/cmake/global_vars.cmake b/cmake/global_vars.cmake index 4559de81ae1..8da5a30dbe2 100644 --- a/cmake/global_vars.cmake +++ b/cmake/global_vars.cmake @@ -9,27 +9,27 @@  if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)    set(YASM_FLAGS -f elf64 -D UNIX -D _x86_64_ -D_YASM_ -g dwarf2)    set(BISON_FLAGS -v) -  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs --scoped-enums) +  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs)    set(RAGEL_FLAGS -L -I ${CMAKE_SOURCE_DIR}/)  endif()  if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)    set(BISON_FLAGS -v) -  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs --scoped-enums) +  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs)    set(RAGEL_FLAGS -L -I ${CMAKE_SOURCE_DIR}/)  endif()  if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")    set(YASM_FLAGS -f macho64 -D DARWIN -D UNIX -D _x86_64_ -D_YASM_)    set(BISON_FLAGS -v) -  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs --scoped-enums) +  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs)    set(RAGEL_FLAGS -L -I ${CMAKE_SOURCE_DIR}/)  endif()  if(WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)    set(YASM_FLAGS -f win64 -D WIN64 -D _x86_64_ -D_YASM_)    set(BISON_FLAGS -v) -  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs --scoped-enums) +  set(FBS_CPP_FLAGS --no-warnings --cpp --keep-prefix --gen-mutable --schema -b --yandex-maps-iter --gen-object-api --filename-suffix .fbs)    set(RAGEL_FLAGS -L -I ${CMAKE_SOURCE_DIR}/)  endif()  | 
