node-sword-interface 1.0.80 → 1.0.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +1 -12
- package/package.json +1 -1
package/binding.gyp
CHANGED
|
@@ -9,16 +9,6 @@
|
|
|
9
9
|
# 3. Detect the SDK to use (iphoneos or iphonesimulator)
|
|
10
10
|
"ios_sdk": "<!(python3 -c \"import os; print('iphonesimulator' if 'iPhoneSimulator' in os.environ.get('SDKROOT', '') else 'iphoneos')\")"
|
|
11
11
|
},
|
|
12
|
-
"target_defaults": {
|
|
13
|
-
"conditions": [
|
|
14
|
-
["is_ios==1", {
|
|
15
|
-
"xcode_settings": {
|
|
16
|
-
"SDKROOT": "<(ios_sdk)",
|
|
17
|
-
"IPHONEOS_DEPLOYMENT_TARGET": "<(ios_ver)"
|
|
18
|
-
}
|
|
19
|
-
}]
|
|
20
|
-
]
|
|
21
|
-
},
|
|
22
12
|
"targets": [
|
|
23
13
|
{
|
|
24
14
|
'target_name': 'sword',
|
|
@@ -119,7 +109,6 @@
|
|
|
119
109
|
'-lz'
|
|
120
110
|
],
|
|
121
111
|
"dependencies": [
|
|
122
|
-
"<!(node -p \"require('node-addon-api').gyp\")",
|
|
123
112
|
'sword'
|
|
124
113
|
],
|
|
125
114
|
"xcode_settings": {
|
|
@@ -131,7 +120,7 @@
|
|
|
131
120
|
"-install_name @rpath/node_sword_interface.framework/node_sword_interface",
|
|
132
121
|
"-undefined dynamic_lookup",
|
|
133
122
|
"-Wl,-bind_at_load",
|
|
134
|
-
"-all_load"
|
|
123
|
+
"-all_load",
|
|
135
124
|
],
|
|
136
125
|
"MACH_O_TYPE": "mh_dylib",
|
|
137
126
|
"PRODUCT_TYPE": "com.apple.product-type.framework"
|