You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

  1. /*
  2. * StoRM - Build-in Options
  3. *
  4. * This file is parsed by CMake during makefile generation
  5. * It contains information such as the base path to the test/example data
  6. */
  7. #ifndef STORM_GENERATED_STORMCONFIG_H_
  8. #define STORM_GENERATED_STORMCONFIG_H_
  9. // Version Information
  10. #define STORM_CPP_VERSION_MAJOR @STORM_CPP_VERSION_MAJOR@
  11. #define STORM_CPP_VERSION_MINOR @STORM_CPP_VERSION_MINOR@
  12. // The path of the sources from which StoRM will be/was build
  13. #define STORM_CPP_BASE_PATH "@PROJECT_SOURCE_DIR@"
  14. // The path used in the functional and performance tests to load the supplied example files
  15. #define STORM_CPP_TESTS_BASE_PATH "@STORM_CPP_TESTS_BASE_PATH@"
  16. // Whether Gurobi is available and to be used (define/undef)
  17. #@STORM_CPP_GUROBI_DEF@ STORM_HAVE_GUROBI
  18. // Whether GLPK is available and to be used (define/undef)
  19. #@STORM_CPP_GLPK_DEF@ STORM_HAVE_GLPK
  20. // Whether Z3 is available and to be used (define/undef)
  21. #@STORM_CPP_Z3_DEF@ STORM_HAVE_Z3
  22. // Whether Intel Threading Building Blocks are available and to be used (define/undef)
  23. #@STORM_CPP_INTELTBB_DEF@ STORM_HAVE_INTELTBB
  24. #endif // STORM_GENERATED_STORMCONFIG_H_