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.

29 lines
992 B

  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. // The path of the sources from which StoRM will be/was build
  10. #define STORM_CPP_BASE_PATH "@PROJECT_SOURCE_DIR@"
  11. // The path used in the functional and performance tests to load the supplied example files
  12. #define STORM_CPP_TESTS_BASE_PATH "@STORM_CPP_TESTS_BASE_PATH@"
  13. // Whether Gurobi is available and to be used (define/undef)
  14. #@STORM_CPP_GUROBI_DEF@ STORM_HAVE_GUROBI
  15. // Whether GLPK is available and to be used (define/undef)
  16. #@STORM_CPP_GLPK_DEF@ STORM_HAVE_GLPK
  17. // Whether Z3 is available and to be used (define/undef)
  18. #@STORM_CPP_Z3_DEF@ STORM_HAVE_Z3
  19. // Whether Intel Threading Building Blocks are available and to be used (define/undef)
  20. #@STORM_CPP_INTELTBB_DEF@ STORM_HAVE_INTELTBB
  21. #endif // STORM_GENERATED_STORMCONFIG_H_