forked from quickshell/quickshell
Also adds distributor to --version and build configuration to --version --verbose
12 lines
427 B
C++
12 lines
427 B
C++
#pragma once
|
|
|
|
// NOLINTBEGIN
|
|
#define GIT_REVISION "@GIT_REVISION@"
|
|
#define DISTRIBUTOR "@DISTRIBUTOR@"
|
|
#define DISTRIBUTOR_DEBUGINFO_AVAILABLE @DEBUGINFO_AVAILABLE@
|
|
#define CRASH_REPORTER @CRASH_REPORTER_DEF@
|
|
#define BUILD_TYPE "@CMAKE_BUILD_TYPE@"
|
|
#define COMPILER "@CMAKE_CXX_COMPILER_ID@ (@CMAKE_CXX_COMPILER_VERSION@)"
|
|
#define COMPILE_FLAGS "@CMAKE_CXX_FLAGS@"
|
|
#define BUILD_CONFIGURATION "@QS_BUILD_OPTIONS@"
|
|
// NOLINTEND
|