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.

25 lines
940 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. // 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 Intel Threading Building Blocks are available and to be used (define/undef)
  19. #@STORM_CPP_INTELTBB_DEF@ STORM_HAVE_INTELTBB
  20. #endif // STORM_GENERATED_STORMCONFIG_H_