Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
Swift 5.1 support
Browse files Browse the repository at this point in the history
* add a Makefile
  • Loading branch information
Peter Tomaselli committed Jan 14, 2020
1 parent 4c38f04 commit 4634207
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 86 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.PHONY: default clean swiftbuild swifttest sync_linuxmain sync_xcodeproj test

default: sync_linuxmain sync_xcodeproj swiftbuild

clean:
swift package clean

swiftbuild:
swift build

swifttest: sync_linuxmain
swift test

sync_linuxmain:
swift test --generate-linuxmain

sync_xcodeproj:
swift package generate-xcodeproj

test: swifttest
Loading

0 comments on commit 4634207

Please sign in to comment.