11 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
|  | #!/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 | ||
|  | wrap --cython $PWD gtsam $PWD ../ | ||
|  | 
 | ||
|  | python setup.py build_ext --inplace |