version.inc 1.1 KB

123456789101112131415161718192021222324252627
  1. # Included by CMakeLists, edited by the build script
  2. # (the version numbers are generated by the build script from the git current label)
  3. # name of the slicer
  4. set(SLIC3R_APP_NAME "Slic3r")
  5. # Key fo the slicer, must only contains ascii chars and no spaces (be valid in all filesystems)
  6. set(SLIC3R_APP_KEY "Slic3r")
  7. # exe name of the slicer, should be lowercase and valid in all os
  8. set(SLIC3R_APP_CMD "Slic3r")
  9. # versions
  10. set(SLIC3R_VERSION "2.4")
  11. set(SLIC3R_VERSION_FULL "2.4.00.0")
  12. set(SLIC3R_BUILD_ID "${SLIC3R_APP_KEY}_${SLIC3R_VERSION_FULL}+UNKNOWN")
  13. set(SLIC3R_RC_VERSION "2,4,00,0")
  14. set(SLIC3R_RC_VERSION_DOTS "${SLIC3R_VERSION_FULL}")
  15. # Same as the slicer name but for gcodeviewer
  16. set(GCODEVIEWER_APP_NAME "${SLIC3R_APP_NAME} G-code Viewer")
  17. set(GCODEVIEWER_APP_KEY "${SLIC3R_APP_KEY}-gcodeviewer")
  18. set(GCODEVIEWER_APP_CMD "${SLIC3R_APP_CMD}-gcodeviewer")
  19. # string to be added after the SLIC3R_APP_NAME on some places
  20. set(SLIC3R_BASED_ON "")
  21. # to get he github repo
  22. set(SLIC3R_GITHUB "slic3r/Slic3r")
  23. # download url
  24. set(SLIC3R_DOWNLOAD "https://slic3r.org/download")