@nativescript/ios 9.0.0-esm.1 → 9.0.0-esm.10

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.
Binary file
@@ -90,6 +90,12 @@ std = env("GCC_C_LANGUAGE_STANDARD")
90
90
  header_search_paths = env_or_empty("HEADER_SEARCH_PATHS")
91
91
  header_search_paths_parsed = map_and_list((lambda s: "-I" + s), shlex.split(header_search_paths))
92
92
  framework_search_paths = env_or_empty("FRAMEWORK_SEARCH_PATHS")
93
+ # Add extra framework search path for newer Xcode versions
94
+ extra_framework_path = os.path.join(sdk_root, "System/Library/SubFrameworks")
95
+ if framework_search_paths:
96
+ framework_search_paths += " " + extra_framework_path
97
+ else:
98
+ framework_search_paths = extra_framework_path
93
99
  framework_search_paths_parsed = map_and_list((lambda s: "-F" + s), shlex.split(framework_search_paths))
94
100
  other_cflags = env_or_empty("OTHER_CFLAGS")
95
101
  other_cflags_parsed = shlex.split(other_cflags)
@@ -90,6 +90,12 @@ std = env("GCC_C_LANGUAGE_STANDARD")
90
90
  header_search_paths = env_or_empty("HEADER_SEARCH_PATHS")
91
91
  header_search_paths_parsed = map_and_list((lambda s: "-I" + s), shlex.split(header_search_paths))
92
92
  framework_search_paths = env_or_empty("FRAMEWORK_SEARCH_PATHS")
93
+ # Add extra framework search path for newer Xcode versions
94
+ extra_framework_path = os.path.join(sdk_root, "System/Library/SubFrameworks")
95
+ if framework_search_paths:
96
+ framework_search_paths += " " + extra_framework_path
97
+ else:
98
+ framework_search_paths = extra_framework_path
93
99
  framework_search_paths_parsed = map_and_list((lambda s: "-F" + s), shlex.split(framework_search_paths))
94
100
  other_cflags = env_or_empty("OTHER_CFLAGS")
95
101
  other_cflags_parsed = shlex.split(other_cflags)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nativescript/ios",
3
3
  "description": "NativeScript Runtime for iOS",
4
- "version": "9.0.0-esm.1",
4
+ "version": "9.0.0-esm.10",
5
5
  "keywords": [
6
6
  "NativeScript",
7
7
  "iOS",