Skip to content

Commit

Permalink
Merge pull request #111 from simelo/stdevHan_t96_silent_swig
Browse files Browse the repository at this point in the history
Fixes #96 Silence the warnings in SWIG
  • Loading branch information
olemis authored Feb 10, 2019
2 parents d11efd3 + bd0ddea commit 21c7b83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ tests/mytest.py
# SWIG
*.kbk

skycoin/skycoin.py
swig/pyskycoin_wrap.c
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ build-swig: ## Generate Python C module from SWIG interfaces
rm -f swig/pyskycoin_wrap.c
rm -f swig/include/swig.h
cp -v gopath/src/github.com/skycoin/skycoin/include/swig.h swig/include/
swig -python -Iswig/include -I$(INCLUDE_DIR) -outdir ./skycoin/ -o swig/pyskycoin_wrap.c $(LIBSWIG_DIR)/pyskycoin.i
swig -python -w501,505,401,302,509,451 -Iswig/include -I$(INCLUDE_DIR) -outdir ./skycoin/ -o swig/pyskycoin_wrap.c $(LIBSWIG_DIR)/pyskycoin.i

develop: ## Install PySkycoin for development
$(PYTHON_BIN) setup.py develop
Expand Down

0 comments on commit 21c7b83

Please sign in to comment.