Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1 KB

INSTALL.md

File metadata and controls

42 lines (26 loc) · 1 KB

SBMLSolver installation instructions

  1. First build the SBMLSolver dependencies, these are in a separate git repo. You will install this into its own directory, reccomended to install to $HOME/local

    https://github.com/AndySomogyi/sbmlsolver_dep

  2. grab this repo from git, assuming you'll call it '$HOME/src/sbmlsolver'.

  3. Create a build directory, $HOME/src/sbmlsolver_build, go to this dir and run ccmake,

    ccmake ../sbmlsolver
    

    If you're using an IDE, you can use CMake to generate proejct files like:

    ccmake -G"Eclipse CDT4 - Unix Makefiles" ../sbmlsolver
    

    Or XCode project files like

    ccmake -G"Xcode" ../sbmlsolver
    
  4. In the ccmake gui, select $HOME/local (or wherever you installed the dependencies to) as the value for the SBMLSOLVER_DEP_DIR build option.

    Hit 'c' a few times to configure, and 'g' to generate the project file.

    Now just build

    make