mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-21 12:41:06 +08:00

* Display commit ID used for build in AboutDialog * Dynamically check for snapshots --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
19 lines
679 B
C
19 lines
679 B
C
#ifndef __SLIC3R_VERSION_H
|
|
#define __SLIC3R_VERSION_H
|
|
|
|
#define SLIC3R_APP_NAME "@SLIC3R_APP_NAME@"
|
|
#define SLIC3R_APP_KEY "@SLIC3R_APP_KEY@"
|
|
#define SLIC3R_VERSION "@SLIC3R_VERSION@"
|
|
#define SoftFever_VERSION "@SoftFever_VERSION@"
|
|
#ifndef GIT_COMMIT_HASH
|
|
#define GIT_COMMIT_HASH "0000000" // 0000000 means uninitialized
|
|
#endif
|
|
#define SLIC3R_BUILD_ID "@SLIC3R_BUILD_ID@"
|
|
#define SLIC3R_BUILD_TIME "@SLIC3R_BUILD_TIME@"
|
|
//#define SLIC3R_RC_VERSION "@SLIC3R_VERSION@"
|
|
#define BBL_RELEASE_TO_PUBLIC @BBL_RELEASE_TO_PUBLIC@
|
|
#define BBL_INTERNAL_TESTING @BBL_INTERNAL_TESTING@
|
|
#define ORCA_CHECK_GCODE_PLACEHOLDERS @ORCA_CHECK_GCODE_PLACEHOLDERS@
|
|
|
|
#endif /* __SLIC3R_VERSION_H */
|