node/deps/ada/ada.gyp
Yagiz Nizipli 531c64d04e
url: enable simdutf for ada
PR-URL: https://github.com/nodejs/node/pull/61477
Reviewed-By: Daniel Lemire <daniel@lemire.me>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
2026-03-30 17:20:23 +02:00

25 lines
502 B
Python

{
'variables': {
'ada_sources': [ 'ada.cpp' ],
},
'targets': [
{
'target_name': 'ada',
'type': 'static_library',
'include_dirs': [
'.',
'<(DEPTH)/deps/v8/third_party/simdutf',
],
'direct_dependent_settings': {
'include_dirs': ['.'],
},
'defines': [
'ADA_USE_SIMDUTF=1',
],
'dependencies': [
'../../tools/v8_gypfiles/v8.gyp:simdutf',
],
'sources': [ '<@(ada_sources)' ]
},
]
}