mirror of
https://github.com/amnezia-vpn/DefaultVPN.git
synced 2026-05-17 00:26:23 +03:00
* feat: update app identifiers and development team for iOS and macOS builds * feat: rename AmneziaVPN to DefaultVPN in iOS configuration and code references * Complete rename * Missed folder renamed * Translation removed from commit * Another step of renaming * submodule reverted
17 lines
350 B
C
17 lines
350 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#ifndef APP_VERSION
|
|
#define APP_VERSION "@CMAKE_PROJECT_VERSION@"
|
|
#endif
|
|
|
|
#ifndef APP_MAJOR_VERSION
|
|
#define APP_MAJOR_VERSION "@APP_MAJOR_VERSION@"
|
|
#endif
|
|
|
|
#define APPLICATION_NAME "DefaultVPN"
|
|
#define SERVICE_NAME "DefaultVPN-service"
|
|
#define ORGANIZATION_NAME "DefaultVPN.ORG"
|
|
|
|
#endif // VERSION_H
|