* 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
16 lines
350 B
C
16 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
|