/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/simdjson/unofficial.gni
22 строки
762 B
Cheng Zhao
build: add GN configurations for simdjson
22 ноя 2023, 01:39
Не верифицирован
22 ноя 2023, 01:39
1858341
Код
Авторство
О чём код?
# This file is used by GN for building, which is NOT the build system used for # building official binaries. # Please edit the gyp files if you are making changes to build system. # The actual configurations are put inside a template in unofficial.gni to # prevent accidental edits from contributors. template("simdjson_gn_build") { config("simdjson_config") { include_dirs = [ "." ] } gypi_values = exec_script("../../tools/gypi_to_gn.py", [ rebase_path("simdjson.gyp") ], "scope", [ "simdjson.gyp" ]) source_set(target_name) { forward_variables_from(invoker, "*") public_configs = [ ":simdjson_config" ] sources = gypi_values.simdjson_sources } }