mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
3366c22e99
* CI attempt * syntax * fix cmake for linux * fix include directories and merge main * fix PDB fighting * fix gcc compiling * fix SSCACHE for windows * try and fix gcc * more CI presets * remove the android target for now * bump cmake minimum to fix debug information format * yet another attempt at fixing gcc * yet another attempt at fixing gcc * better CI matrixing * yet another attempt at fixing GCC * fix arm * fix CI * placeholder icons * compile dawn from source for windows arm64 * fix icons and linker warnings * fix cmake * fetch libjpegturbo --------- Co-authored-by: Luke Street <luke@street.dev>
21 lines
672 B
C
21 lines
672 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#define DUSK_WC_DESCRIBE "@DUSK_WC_DESCRIBE@"
|
|
#define DUSK_VERSION_STRING "@DUSK_VERSION_STRING@"
|
|
|
|
#define DUSK_WC_BRANCH "@DUSK_WC_BRANCH@"
|
|
#define DUSK_WC_REVISION "@DUSK_WC_REVISION@"
|
|
#define DUSK_WC_DATE "@DUSK_WC_DATE@"
|
|
#define DUSK_BUILD_TYPE "@CMAKE_BUILD_TYPE@"
|
|
|
|
#if defined(__x86_64__) || defined(_M_AMD64)
|
|
#define DUSK_DLPACKAGE "dusk-@DUSK_WC_DESCRIBE@-@PLATFORM_NAME@-x86_64"
|
|
#elif defined(__i386__) || defined(_M_IX86)
|
|
#define DUSK_DLPACKAGE "dusk-@DUSK_WC_DESCRIBE@-@PLATFORM_NAME@-x86"
|
|
#elif defined(__aarch64__) || defined(_M_ARM64)
|
|
#define DUSK_DLPACKAGE "dusk-@DUSK_WC_DESCRIBE@-@PLATFORM_NAME@-arm64"
|
|
#endif
|
|
|
|
#endif
|