30 lines
982 B
C
30 lines
982 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#define BELT_TEARING_SERVER_VERSION_STRING "2.0.1"
|
|
#define BELT_TEARING_SERVER_VERSION_BUILD "5"
|
|
#define BELT_TEARING_SERVER_PRODUCT_NAME "BeltTearingServer"
|
|
#define BELT_TEARING_SERVER_COMPANY_NAME "VisionRobot"
|
|
#define BELT_TEARING_SERVER_COPYRIGHT "Copyright (C) 2024 VisionRobot. All rights reserved."
|
|
#define BELT_TEARING_SERVER_DESCRIPTION "Belt Tearing Detection Server with Camera Integration"
|
|
|
|
// 构建信息
|
|
#define BELT_TEARING_SERVER_BUILD_DATE __DATE__
|
|
#define BELT_TEARING_SERVER_BUILD_TIME __TIME__
|
|
|
|
#ifdef _WIN32
|
|
#define BELT_TEARING_SERVER_PLATFORM "Windows"
|
|
#elif __linux__
|
|
#define BELT_TEARING_SERVER_PLATFORM "Linux"
|
|
#else
|
|
#define BELT_TEARING_SERVER_PLATFORM "Unknown"
|
|
#endif
|
|
|
|
#ifdef _DEBUG
|
|
#define BELT_TEARING_SERVER_BUILD_TYPE "Debug"
|
|
#else
|
|
#define BELT_TEARING_SERVER_BUILD_TYPE "Release"
|
|
#endif
|
|
|
|
#endif // VERSION_H
|