Ho incorporato SpatialIitein un progetto Xcode che utilizza un file di intestazione da Proj.4, solo un'intestazione. Entrambi sono progetti Xcode e hanno obiettivi statici.
Sto cercando di migrare dal sottomodulo git a Cocoapods. Poiché gli obiettivi statici sembrano difficili da usare con Cocoapods, voglio solo che il progetto sia costruito nel solito modo. Ho realizzato podspec per Proj.4. Dopo aver scritto il podfile per SpatialLiteho ricevuto gli avvisi:
[!] The target `SpatialiteIOS [Debug]` overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Pods.xcconfig'.
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.
[!] The target `SpatialiteIOS [Debug]` overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Pods.xcconfig'.
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.
[!] The target `SpatialiteIOS [Debug - Release]` overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Pods.xcconfig'.
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.
[!] The target `SpatialiteIOS [Debug - Release]` overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Pods.xcconfig'.
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.
Ho letto questo problema ma non ho idea di cosa significhino gli avvisi e cosa posso fare per risolverlo.
Inoltre, quando apro l'area di lavoro e quando apro il progetto SpatiaLite da solo, entrambi sono indirizzati a Mac OSX 64, quando si suppone che sia un progetto iOS. Il mio podfile dice "platform: ios".



