We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01e57ce commit fb05b04Copy full SHA for fb05b04
NativeScript/CMakeLists.txt
@@ -303,6 +303,11 @@ if(TARGET_PLATFORM_MACOS)
303
# COMMAND /usr/libexec/PlistBuddy -c "Add :LSMinimumSystemVersion string ${CMAKE_OSX_DEPLOYMENT_TARGET}" $<TARGET_FILE_DIR:${NAME}>/Resources/Info.plist
304
# )
305
306
+ # Convert the Info.plist from binary format to XML format.
307
+ # This seemed to unblock a build error when using in React Native.
308
+ add_custom_command(TARGET ${NAME} POST_BUILD
309
+ COMMAND plutil -convert xml1 $<TARGET_FILE_DIR:${NAME}>/Info.plist
310
+ )
311
set(METADATA_FILE "metadata.macos.nsmd")
312
elseif(TARGET_PLATFORM_IOS)
313
# Convert the Info.plist from binary format to XML format.
0 commit comments