CREATE_PROJECT: Support building with Tremor instead of Vorbis

This commit is contained in:
Cameron Cawley 2018-11-03 23:06:10 +00:00 committed by David Turner
parent e016efce56
commit 8fa2f90a26
6 changed files with 50 additions and 9 deletions

View file

@ -211,6 +211,15 @@ StringList getFeatureLibraries(const FeatureList &features);
*/
bool setFeatureBuildState(const std::string &name, FeatureList &features, bool enable);
/**
* Gets the state of a given feature.
*
* @param name Name of the feature.
* @param features List of features to operate on.
* @return "true", when the feature is enabled, "false" otherwise.
*/
bool getFeatureBuildState(const std::string &name, FeatureList &features);
/**
* Structure to describe a build setup.
*