Ref T210, removed branch flags

Our distribution concept allows dynamic assigments of the distribution.
So a particular version can change its stability.
This commit is contained in:
Klaus Basan
2017-12-19 03:09:52 +01:00
parent 265869dc1f
commit 0390ed83f8
4 changed files with 30 additions and 47 deletions

View File

@@ -23,8 +23,6 @@ $$DEFINE_WITH_P3D#define WITH_P3D
$$DEFINE_WITH_FS9#define WITH_FS9
$$DEFINE_WITH_FSUIPC#define WITH_FSUIPC
$$DEFINE_WITH_XPLANE#define WITH_XPLANE
$$DEFINE_SWIFT_DEV_BRANCH#define SWIFT_DEV_BRANCH
$$DEFINE_SWIFT_STABLE_BRANCH#define SWIFT_STABLE_BRANCH
$$DEFINE_SWIFT_VATSIM_SUPPORT#define SWIFT_VATSIM_SUPPORT
bool BlackConfig::CBuildConfig::isCompiledWithBlackCore()
@@ -108,24 +106,6 @@ bool BlackConfig::CBuildConfig::isCompiledWithGui()
#endif
}
bool BlackConfig::CBuildConfig::isDevBranch()
{
#ifdef SWIFT_DEV_BRANCH
return true;
#else
return false;
#endif
}
bool BlackConfig::CBuildConfig::isStableBranch()
{
#ifdef SWIFT_STABLE_BRANCH
return true;
#else
return false;
#endif
}
bool BlackConfig::CBuildConfig::isVatsimVersion()
{
#ifdef SWIFT_VATSIM_SUPPORT