mirror of
https://github.com/dreamforceinc/wUpdateVersionPS.git
synced 2026-03-28 18:52:46 +03:00
17 lines
219 B
C
17 lines
219 B
C
// version.h
|
|
#pragma once
|
|
|
|
#define APP_VERSION "0.1"
|
|
|
|
#ifdef _WIN64
|
|
#define APP_ARCH "x64"
|
|
#else
|
|
#define APP_ARCH "x86"
|
|
#endif // _WIN64
|
|
|
|
#ifdef _DEBUG
|
|
#define APP_CONF "d"
|
|
#else
|
|
#define APP_CONF ""
|
|
#endif // _DEBUG
|