ACE3/addons/main/script_mod.hpp

23 lines
583 B
C++
Raw Normal View History

2016-06-01 11:49:10 +00:00
// COMPONENT should be defined in the script_component.hpp and included BEFORE this hpp
#define MAINPREFIX z
#define PREFIX ace
#define MAJOR 3
2016-09-04 19:51:36 +00:00
#define MINOR 7
#define PATCHLVL 0
2016-09-12 17:47:31 +00:00
#define BUILD 6
2016-06-01 11:49:10 +00:00
#define VERSION MAJOR.MINOR.PATCHLVL.BUILD
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD
// MINIMAL required version for the Mod. Components can specify others..
#define REQUIRED_VERSION 1.62
#define REQUIRED_CBA_VERSION {3,1,0}
2016-06-19 07:12:25 +00:00
2016-06-20 09:41:17 +00:00
#ifdef COMPONENT_BEAUTIFIED
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT_BEAUTIFIED)
#else
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT)
#endif