mirror of https://github.com/OpenVPN/openvpn-gui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
809 B
25 lines
809 B
#pragma once |
|
|
|
/* Name of package */ |
|
#define PACKAGE "openvpn-gui" |
|
|
|
/* Define to the address where bug reports for this package should be sent. */ |
|
#define PACKAGE_BUGREPORT "openvpn-devel@lists.sourceforge.net" |
|
|
|
/* Define to the full name of this package. */ |
|
#define PACKAGE_NAME "OpenVPN GUI" |
|
|
|
/* Define to the one symbol short name of this package. */ |
|
#define PACKAGE_TARNAME "openvpn-gui" |
|
|
|
/* Define to the home page for this package. */ |
|
#define PACKAGE_URL "https://github.com/openvpn/openvpn-gui/" |
|
|
|
/* Define to the version of this package. */ |
|
#define PACKAGE_VERSION "11" |
|
|
|
/* Version in windows resource format */ |
|
#define PACKAGE_VERSION_RESOURCE @GUI_VERSION_MAJOR@, @GUI_VERSION_MINOR@, 0, 0 |
|
|
|
/* Version as a string */ |
|
#define PACKAGE_VERSION_RESOURCE_STR "@GUI_VERSION_MAJOR@.@GUI_VERSION_MINOR@.0.0"
|
|
|