-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #4. Create skycoin.net library using swig #5
Conversation
…g. Update submodule
@@ -0,0 +1,1623 @@ | |||
/* Created by "go tool cgo" - DO NOT EDIT. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should use the copy in the skycoin/skycoin
submodule .
- nuget restore LibskycoinNet.sln | ||
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner | ||
|
||
script: | ||
- make build-libc | ||
- make build-swig |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both make
targets should be declared as dependencies for make build
(see below)
- msbuild /p:Configuration=Release LibskycoinNet.sln | ||
- make build-libskycoin-net |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just make build
... indeed , much better would be ...
- msbuild /p:Configuration=Release LibskycoinNet.sln | ||
- make build-libskycoin-net | ||
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./LibskycoinNetTest/bin/Release/LibskycoinNetTest.dll |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
... to summarize it as a singlemake test
target dependent of make build
(et al.) and doing exactly this .
superseded by #11 |
Fixes #4
Changes: