Update sgct submodule to use new sgct config generator version

This commit is contained in:
GPayne
2022-04-08 14:01:08 -06:00
parent f7588f67b6
commit df42f695fe
2 changed files with 7 additions and 6 deletions

View File

@@ -149,13 +149,14 @@ namespace {
std::ofstream outFile;
try {
outFile.open(path, std::ofstream::out);
sgct::config::GeneratorVersion genEntry = {
"OpenSpace",
OPENSPACE_VERSION_MAJOR,
OPENSPACE_VERSION_MINOR
};
outFile << sgct::serializeConfig(
cluster,
{
"OpenSpace",
OPENSPACE_VERSION_MAJOR,
OPENSPACE_VERSION_MINOR
}
genEntry
);
}
catch (const std::ofstream::failure& e) {