node-windows-ucv/binding.gyp
trevor-signal 1518d1d025
Fix missing reference (#1)
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2025-07-15 02:34:03 +10:00

31 lines
651 B
Python

{
"conditions": [
["OS=='win'", {
"targets": [{
"target_name": "windows-ucv",
"dependencies": [
"<!(node -p \"require('node-addon-api').targets\"):node_addon_api_except",
],
"sources": [
"addon.cpp",
],
"libraries": [
"credui.lib",
"runtimeobject.lib"
],
"msvs_settings": {
"VCCLCompilerTool": {
"ExceptionHandling": 1, # /EHsc,
"RuntimeLibrary": "2", # /MD
},
},
}],
}, {
"targets": [{
"target_name": "noop",
"type": "none",
}],
}],
],
}