Merge pull request 'macos uses .dylib' (#24) from ios_build into trunk
continuous-integration/drone/push Build is passing Details

Reviewed-on: #24
This commit is contained in:
Sarah Jamie Lewis 2021-08-30 17:40:08 +00:00
commit 9f24031d97
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -3,5 +3,6 @@ cwtch-sources.jar
cwtch.aar
libCwtch.h
libCwtch.so
libCwtch.dylib
libCwtch.dll
ios/

View File

@ -8,7 +8,7 @@ all: linux android windows
linux: libCwtch.so
macos: libCwtch.so
macos: libCwtch.dylib
android: cwtch.aar
@ -18,6 +18,10 @@ libCwtch.so: lib.go
./switch-ffi.sh
go build -buildmode c-shared -o libCwtch.so
libCwtch.dylib: lib.go
./switch-ffi.sh
go build -buildmode c-shared -o libCwtch.dylib
cwtch.aar: lib.go
./switch-gomobile.sh
gomobile bind -target android