mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
583 B
C++
23 lines
583 B
C++
// COMPONENT should be defined in the script_component.hpp and included BEFORE this hpp
|
|
|
|
#define MAINPREFIX z
|
|
#define PREFIX ace
|
|
|
|
#define MAJOR 3
|
|
#define MINOR 6
|
|
#define PATCHLVL 1
|
|
#define BUILD 0
|
|
|
|
#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 {2,4,1}
|
|
|
|
#ifdef COMPONENT_BEAUTIFIED
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT_BEAUTIFIED)
|
|
#else
|
|
#define COMPONENT_NAME QUOTE(ACE3 - COMPONENT)
|
|
#endif
|