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.

23 lines
1.1 KiB

  1. //AUTO GENERATED -- DO NOT CHANGE
  2. // TODO resolve issues when placing this in the build order directly.
  3. #include "storm/utility/storm-version.h"
  4. namespace storm {
  5. namespace utility {
  6. const unsigned StormVersion::versionMajor = @STORM_CPP_VERSION_MAJOR@;
  7. const unsigned StormVersion::versionMinor = @STORM_CPP_VERSION_MINOR@;
  8. const unsigned StormVersion::versionPatch = @STORM_CPP_VERSION_PATCH@;
  9. const std::string StormVersion::gitRevisionHash = "@STORM_CPP_VERSION_HASH@";
  10. const unsigned StormVersion::commitsAhead = @STORM_CPP_VERSION_COMMITS_AHEAD@;
  11. const unsigned StormVersion::dirty = @STORM_CPP_VERSION_DIRTY@;
  12. const std::string StormVersion::systemName = "@CMAKE_SYSTEM_NAME@";
  13. const std::string StormVersion::systemVersion = "@CMAKE_SYSTEM_VERSION@";
  14. const std::string StormVersion::cxxCompiler = "@STORM_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@";
  15. #ifdef NDEBUG
  16. const std::string StormVersion::cxxFlags = "@CMAKE_CXX_FLAGS@" " " "@CMAKE_CXX_FLAGS_RELEASE@";
  17. #else
  18. const std::string StormVersion::cxxFlags = "@CMAKE_CXX_FLAGS@" " " "@CMAKE_CXX_FLAGS_DEBUG@";
  19. #endif
  20. }
  21. }