/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef CAPABILITIESVER_H #define CAPABILITIESVER_H /* * Capabilities's major version, minor version, patch level, and whether * this is a beta release. * * The format of the version string should be * ".[.] []" */ /********************************************************************/ /* The VERSION Strings should be updated everytime a new release */ /* of CAPABILITIESVER is generated. This is done by changing */ /* cmake/capabilitiesConfig.cmake. */ /********************************************************************/ #define CAPABILTIES_VERSION "${CAPABILTIES_VERSION}" #define CAPABILTIES_VMAJOR ${CAPABILTIES_VERSION_MAJOR} #define CAPABILTIES_VMINOR ${CAPABILTIES_VERSION_MINOR} #define CAPABILTIES_VPATCH ${CAPABILTIES_VERSION_PATCH} #define CAPABILTIES_BETA ${CAPABILTIES_VERSION_BETA} #endif