CREATE_PROJECT: Add option to disable static detection

This commit is contained in:
SupSuper 2024-04-27 11:02:20 +01:00
parent 38029ab287
commit 5216d4c399

View file

@ -335,6 +335,10 @@ int main(int argc, char *argv[]) {
setup.useStaticDetection = false;
}
if (!getFeatureBuildState("detection-static", setup.features)) {
setup.useStaticDetection = false;
}
// HACK: Vorbis and Tremor can not be enabled simultaneously
if (getFeatureBuildState("tremor", setup.features)) {
setFeatureBuildState("vorbis", setup.features, false);