1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * Copyright (c)2013-2020 ZeroTier, Inc.
- *
- * Use of this software is governed by the Business Source License included
- * in the LICENSE.TXT file in the project's root directory.
- *
- * Change Date: 2024-01-01
- *
- * On the date above, in accordance with the Business Source License, use
- * of this software will be governed by version 2.0 of the Apache License.
- */
- /****/
- #ifndef _ZT_VERSION_H
- #define _ZT_VERSION_H
- /**
- * Major version
- */
- #define ZEROTIER_VERSION_MAJOR @ZEROTIER_VERSION_MAJOR@
- /**
- * Minor version
- */
- #define ZEROTIER_VERSION_MINOR @ZEROTIER_VERSION_MINOR@
- /**
- * Revision
- */
- #define ZEROTIER_VERSION_REVISION @ZEROTIER_VERSION_REVISION@
- /**
- * Build version
- *
- * This starts at 0 for each major.minor.rev tuple and can be incremented
- * to force a minor update without an actual version number change. It's
- * not part of the actual release version number.
- */
- #define ZEROTIER_VERSION_BUILD @ZEROTIER_VERSION_BUILD@
- #endif
|