-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added basic Java API and example for it
- reconsidered on what functions to expose
- Loading branch information
Showing
17 changed files
with
952 additions
and
9 deletions.
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
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,36 @@ | ||
############################################################################### | ||
# | ||
# Description : CMake build script for spatialSBML language bindings | ||
# Original author(s): Frank Bergmann <[email protected]> | ||
# Organization : California Institute of Technology | ||
# | ||
############################################################################### | ||
|
||
find_program(SWIG_EXECUTABLE | ||
NAMES swig | ||
PATHS | ||
c:/swigwin-2.0.8 | ||
c:/swigwin-2.0.7 | ||
c:/swigwin-2.0.4 | ||
c:/swigwin-2.0.2 | ||
c:/swigwin-2.0.1 | ||
c:/swigwin-2.0.0 | ||
/usr/local/bin | ||
/opt/local/bin | ||
/usr/bin | ||
DOC "The file name of the swig executable." | ||
) | ||
set(SWIG_EXTRA_ARGS) | ||
|
||
|
||
# | ||
# and build selected language bindings | ||
# | ||
|
||
if(WITH_CSHARP) | ||
add_subdirectory(csharp) | ||
endif() | ||
|
||
if(WITH_JAVA) | ||
add_subdirectory(java) | ||
endif() |
Oops, something went wrong.