mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 20:29:23 +01:00
746b17e1a5
PR-URL: https://github.com/nodejs/node/pull/54181 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
29 lines
580 B
Python
29 lines
580 B
Python
{
|
|
'variables': {
|
|
'sqlite_sources': [
|
|
'sqlite3.c',
|
|
],
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'sqlite',
|
|
'type': 'static_library',
|
|
'cflags': ['-fvisibility=hidden'],
|
|
'xcode_settings': {
|
|
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
|
|
},
|
|
'defines': [
|
|
'SQLITE_ENABLE_SESSION',
|
|
'SQLITE_ENABLE_PREUPDATE_HOOK'
|
|
],
|
|
'include_dirs': ['.'],
|
|
'sources': [
|
|
'<@(sqlite_sources)',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': ['.'],
|
|
},
|
|
},
|
|
],
|
|
}
|