Replaced project configuration format from JSON to YAML

This commit is contained in:
Nav
2022-07-23 15:37:22 +01:00
parent cb577c7acd
commit ae5747e79b
13 changed files with 215 additions and 133 deletions

View File

@@ -34,12 +34,12 @@ namespace Bloom
}
/**
* Returns the path to the current project's configuration file (bloom.json).
* Returns the path to the current project's configuration file (bloom.yaml).
*
* @return
*/
static std::string projectConfigPath() {
return Paths::projectDirPath() + "/bloom.json";
return Paths::projectDirPath() + "/bloom.yaml";
}
/**