Skip to content

Instantly share code, notes, and snippets.

View impul's full-sized avatar
🎯
Focusing

Pavlo Boiko impul

🎯
Focusing
  • Ukraine, Uzhhorod/Remote
View GitHub Profile
@impul
impul / Makefile
Created May 13, 2018 16:27 — forked from oleander/Makefile
How to use the Swift Package Manager and CocoaPods within the same XCode application
APP="MyApp"
CONSTRUCT=xcodebuild -workspace $(APP).xcworkspace -scheme $(APP) clean
install_deps:
pod install
create_config:
swift package fetch
swift package generate-xcodeproj
wipe:
rm -rf .build $(APP).xcodeproj $(APP).xcworkspace Package.pins Pods Podfile.lock