Add REQUIRED_CBA_VERSION macro to script_mod.hpp

This commit is contained in:
PabstMirror 2016-03-03 13:00:47 -06:00
parent 137a512a9e
commit 53a36f8783
2 changed files with 2 additions and 1 deletions

View File

@ -594,7 +594,7 @@ class CfgSettings {
class Versioning {
class ACE {
class dependencies {
CBA[] = {"cba_main", {2,3,1}, "true"};
CBA[] = {"cba_main", REQUIRED_CBA_VERSION, "true"};
};
};
};

View File

@ -13,3 +13,4 @@
// MINIMAL required version for the Mod. Components can specify others..
#define REQUIRED_VERSION 1.56
#define REQUIRED_CBA_VERSION {2,3,1}