The Sparta Modeling Framework
Loading...
Searching...
No Matches
Building and Integrating the Framework

See README.md on GitHub for instructions on building.

Notes on what's built...

Building sparta produces two main libraries:

  • libsparta.a containing the core sparta code
  • libsimdb.a containing functionality to generate reports with SQLite3

CMake Support

If Sparta was installed properly in a conda environment or natively on the host machine, cmake can find Sparta and include it automatically in any project using the packaging system:

find_package(Sparta REQUIRED)
# Might be necessary if Sparta was NOT installed in standard place:
include_directories (SYSTEM ${SPARTA_INCLUDE_DIRS})

Sparta Header Files

All sparta header files can be found within the sparta directory. All SimDB files can be found in the simdb directory installed alongside the Sparta libraries.