Skip to content

Commit c7f507f

Browse files
committed
reorganize project to support future targets
1 parent 271ed98 commit c7f507f

File tree

20 files changed

+239
-47
lines changed

20 files changed

+239
-47
lines changed

SQLiteMigrationManager.xcodeproj/project.pbxproj

Lines changed: 204 additions & 45 deletions
Large diffs are not rendered by default.

SQLiteMigrationManager.xcodeproj/xcuserdata/garriguv.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
<key>orderHint</key>
1515
<integer>1</integer>
1616
</dict>
17+
<key>SQLiteMigrationManagerTests macOS.xcscheme_^#shared#^_</key>
18+
<dict>
19+
<key>orderHint</key>
20+
<integer>6</integer>
21+
</dict>
1722
</dict>
1823
<key>SuppressBuildableAutocreation</key>
1924
<dict>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>BNDL</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
</dict>
22+
</plist>

bin/run-tests

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ set -euo pipefail
55
main() {
66
xcodebuild \
77
-workspace SQLiteMigrationManager.xcworkspace \
8-
-scheme SQLiteMigrationManager\
9-
-sdk iphonesimulator12.1\
8+
-scheme 'SQLiteMigrationManager iOS' \
9+
-sdk iphonesimulator12.1 \
1010
-destination "platform=iOS Simulator,name=iPhone X,OS=12.1"\
1111
test
12+
xcodebuild \
13+
-workspace SQLiteMigrationManager.xcworkspace \
14+
-scheme 'SQLiteMigrationManager macOS' \
15+
-sdk macosx10.10 \
16+
-destination "arch=x86_64" \
17+
test
1218
swift build
1319
}
1420
main "$@"

0 commit comments

Comments
 (0)