Skip to content

Instantly share code, notes, and snippets.

@fuxx
Last active March 23, 2016 11:11
Show Gist options
  • Save fuxx/b8274e428b6c9f5e24a7 to your computer and use it in GitHub Desktop.
Save fuxx/b8274e428b6c9f5e24a7 to your computer and use it in GitHub Desktop.
Include sqlite3 by architecture for Xcode 7.3
module sqlite3 [system] {
module arm {
header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/include/sqlite3.h"
requires arm
}
module arm64 {
header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/include/sqlite3.h"
requires arm64
}
module x86 {
header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/include/sqlite3.h"
requires x86
}
link "sqlite3"
export *
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment