-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[masa]: python SWIG tenatively appears to be enabled in masa. Current…
…ly, build will fail if it is not available. #2932
- Loading branch information
1 parent
8fd2c2c
commit ef2876b
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// SWIG declarations for building MASA module | ||
// Notice the C and not the C++ API is wrapped | ||
// See SWIG documentation at http://www.swig.org/ | ||
|
||
%module masa | ||
|
||
// Verbatim #includes passed into C compilation | ||
%{ | ||
#define SWIG_FILE_WITH_INIT | ||
%} | ||
|
||
%include "masa.h" | ||
|
||
|
||
// | ||
// nick and rhys | ||
// 7/2/13 | ||
// |