1 #ifndef _ots_MacroMaker_version_h_
2 #define _ots_MacroMaker_version_h_
4 #include "config/PackageInfo.h"
6 #define MYPACKAGE_VERSION_MAJOR 3
7 #define MYPACKAGE_VERSION_MINOR 0
8 #define MYPACKAGE_VERSION_PATCH 0
9 #undef MYPACKAGE_PREVIOUS_VERSIONS
11 #define MYPACKAGE_VERSION_CODE \
12 PACKAGE_VERSION_CODE( \
13 MYPACKAGE_VERSION_MAJOR, MYPACKAGE_VERSION_MINOR, MYPACKAGE_VERSION_PATCH)
14 #ifndef MYPACKAGE_PREVIOUS_VERSIONS
15 #define MYPACKAGE_FULL_VERSION_LIST \
16 PACKAGE_VERSION_STRING( \
17 MYPACKAGE_VERSION_MAJOR, MYPACKAGE_VERSION_MINOR, MYPACKAGE_VERSION_PATCH)
19 #define MYPACKAGE_FULL_VERSION_LIST \
20 MYPACKAGE_PREVIOUS_VERSIONS "," PACKAGE_VERSION_STRING( \
21 MYPACKAGE_VERSION_MAJOR, MYPACKAGE_VERSION_MINOR, MYPACKAGE_VERSION_PATCH)
26 const std::string
package = "MacroMaker";
27 const std::string versions = MYPACKAGE_FULL_VERSION_LIST;
28 const std::string summary =
"The MacroMaker Supervisor";
29 const std::string description =
30 "The MacroMaker Supervisor handles low level sequences of read and writes to "
31 "front-end interfaces with access through the Desktop graphical user interface.";
32 const std::string authors =
"Ryan Rivera, Lorenzo Uplegger";
33 const std::string link =
"http://otsdaq.fnal.gov";
35 config::PackageInfo getPackageInfo();
36 void checkPackageDependencies();
37 std::set<std::string, std::less<std::string> > getPackageDependencies();