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.

26 lines
1.3 KiB

  1. // AUTO GENERATED -- DO NOT CHANGE
  2. #include "storm/utility/storm-version.h"
  3. namespace storm {
  4. namespace utility {
  5. const unsigned StormVersion::versionMajor = @STORM_VERSION_MAJOR@;
  6. const unsigned StormVersion::versionMinor = @STORM_VERSION_MINOR@;
  7. const unsigned StormVersion::versionPatch = @STORM_VERSION_DEV_PATCH@;
  8. const std::string StormVersion::versionLabel = "@STORM_VERSION_LABEL@";
  9. const bool StormVersion::versionDev = @STORM_VERSION_DEV@;
  10. const StormVersion::VersionSource StormVersion::versionSource = @STORM_VERSION_SOURCE@;
  11. const std::string StormVersion::gitRevisionHash = "@STORM_VERSION_GIT_HASH@";
  12. const unsigned StormVersion::commitsAhead = @STORM_VERSION_COMMITS_AHEAD@;
  13. const boost::optional<bool> StormVersion::dirty = @STORM_VERSION_DIRTY@;
  14. const std::string StormVersion::systemName = "@CMAKE_SYSTEM_NAME@";
  15. const std::string StormVersion::systemVersion = "@CMAKE_SYSTEM_VERSION@";
  16. const std::string StormVersion::cxxCompiler = "@STORM_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@";
  17. #ifdef NDEBUG
  18. const std::string StormVersion::cxxFlags = "@CMAKE_CXX_FLAGS@" " " "@CMAKE_CXX_FLAGS_RELEASE@";
  19. #else
  20. const std::string StormVersion::cxxFlags = "@CMAKE_CXX_FLAGS@" " " "@CMAKE_CXX_FLAGS_DEBUG@";
  21. #endif
  22. }
  23. }