simplex-chat-nodejs: fix library loading on Mac

This commit is contained in:
shum
2026-01-05 10:46:38 +00:00
parent 7b74831b18
commit f26aee7e46
+13 -2
View File
@@ -7,8 +7,19 @@
"-L<(module_root_dir)/libs",
"-lsimplex"
],
"ldflags": [
"-Wl,-rpath,'$$ORIGIN'/../../libs"
"conditions": [
["OS=='mac'", {
"xcode_settings": {
"OTHER_LDFLAGS": [
"-Wl,-rpath,@loader_path/../../libs"
]
}
}],
["OS=='linux'", {
"ldflags": [
"-Wl,-rpath,'$$ORIGIN'/../../libs"
]
}]
]
}
]