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.

60 lines
1.8 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. // 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. // Boost include directory used during compilation.
  14. #define STORM_BOOST_INCLUDE_DIR "@STORM_BOOST_INCLUDE_DIR@"
  15. // Carl include directory used during compilation.
  16. #define STORM_CARL_INCLUDE_DIR "@STORM_CARL_INCLUDE_DIR@"
  17. // Whether Gurobi is available and to be used (define/undef)
  18. #cmakedefine STORM_HAVE_GUROBI
  19. // Whether CUDA is available (define/undef)
  20. #@STORM_CPP_CUDA_DEF@ STORM_HAVE_CUDA
  21. // Whether GLPK is available and to be used (define/undef)
  22. #cmakedefine STORM_HAVE_GLPK
  23. // Whether CudaForStorm is available and to be used (define/undef)
  24. #@STORM_CPP_CUDAFORSTORM_DEF@ STORM_HAVE_CUDAFORSTORM
  25. // Whether Z3 is available and to be used (define/undef)
  26. #cmakedefine STORM_HAVE_Z3
  27. // Whether MathSAT is available and to be used (define/undef)
  28. #cmakedefine STORM_HAVE_MSAT
  29. // Whether Intel Threading Building Blocks are available and to be used (define/undef)
  30. #cmakedefine STORM_HAVE_INTELTBB
  31. // Whether support for parametric systems should be enabled
  32. #cmakedefine PARAMETRIC_SYSTEMS
  33. // Whether CLN is available and to be used (define/undef)
  34. #cmakedefine STORM_HAVE_CLN
  35. // Whether carl is available and to be used.
  36. #cmakedefine STORM_HAVE_CARL
  37. // Whether smtrat is available and to be used.
  38. #cmakedefine STORM_HAVE_SMTRAT
  39. #cmakedefine STORM_LOGGING_FRAMEWORK
  40. #cmakedefine STORM_LOG_DISABLE_DEBUG
  41. #endif // STORM_GENERATED_STORMCONFIG_H_