Hi! I want to add some libs provided by Amplify package conditionally based on architecture. The goal is to exclude Mac Catalyst, because it's unsupported by that package. So, I'm trying to do it with OTHER_LDFLAGS following this example on SO. I configured target dependency to build Amplify, AWSPinpointAnalyticsPlugin and AWSCognitoAuthPlugin (They go within Amplify package).
xcconfig:
LIBRARY_SEARCH_PATHS = $(inherited) $(BUILT_PRODUCTS_DIR)
OTHER_LDFLAGS[sdk=iphone*] = $(inherited) -library "Amplify" -library "AWSPinpointAnalyticsPlugin" -library "AWSCognitoAuthPlugin"
It results into the build errors:
clang: error: no such file or directory: 'Amplify'
...
Obviously it's a wrong way, because Amplify
package isn't compiled to libraries. It producing multiple .swiftmodule
files in that build directory. So the question is how to link them?
Can't edit the previous question, so created a new one. Also can't delete the old question, it's probably against GDPR.