2016-09-16 23:42:01 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# exit if any command returns non-zero
|
|
|
|
set -e
|
|
|
|
# print out each command for debugging
|
|
|
|
set -x
|
|
|
|
|
|
|
|
#usage: wrap [--matlab|--cython] absoluteInterfacePath moduleName toolboxPath headerPath
|
2016-11-25 08:48:05 +08:00
|
|
|
wrap --cython $PWD gtsam $PWD/gtsam ../
|
2016-09-16 23:42:01 +08:00
|
|
|
|
|
|
|
python setup.py build_ext --inplace
|
2016-11-25 08:48:05 +08:00
|
|
|
python -m unittest discover
|