29 lines
919 B
C
29 lines
919 B
C
|
|
#ifndef VERSION_H
|
||
|
|
#define VERSION_H
|
||
|
|
|
||
|
|
#define BELT_TEARING_APP_VERSION_STRING "2.0.1"
|
||
|
|
#define BELT_TEARING_APP_VERSION_BUILD "1"
|
||
|
|
#define BELT_TEARING_APP_PRODUCT_NAME "BeltTearingApp"
|
||
|
|
#define BELT_TEARING_APP_COMPANY_NAME "VisionRobot"
|
||
|
|
#define BELT_TEARING_APP_COPYRIGHT "Copyright (C) 2024 VisionRobot. All rights reserved."
|
||
|
|
#define BELT_TEARING_APP_DESCRIPTION "Belt Tearing Detection Application"
|
||
|
|
|
||
|
|
// 构建信息
|
||
|
|
#define BELT_TEARING_APP_BUILD_DATE __DATE__
|
||
|
|
#define BELT_TEARING_APP_BUILD_TIME __TIME__
|
||
|
|
|
||
|
|
#ifdef _WIN32
|
||
|
|
#define BELT_TEARING_APP_PLATFORM "Windows"
|
||
|
|
#elif __linux__
|
||
|
|
#define BELT_TEARING_APP_PLATFORM "Linux"
|
||
|
|
#else
|
||
|
|
#define BELT_TEARING_APP_PLATFORM "Unknown"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifdef _DEBUG
|
||
|
|
#define BELT_TEARING_APP_BUILD_TYPE "Debug"
|
||
|
|
#else
|
||
|
|
#define BELT_TEARING_APP_BUILD_TYPE "Release"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif // VERSION_H
|