fix: Add missing simulators to compiledWith info

This commit is contained in:
Lars Toenning
2024-12-29 14:32:29 +01:00
parent 66d548892d
commit 52f8dc7b6d

View File

@@ -73,6 +73,8 @@ namespace swift::config
QStringList sl; QStringList sl;
if constexpr (CBuildConfig::isCompiledWithFs9Support()) { sl << "FS9"; } if constexpr (CBuildConfig::isCompiledWithFs9Support()) { sl << "FS9"; }
if constexpr (CBuildConfig::isCompiledWithFsxSupport()) { sl << "FSX"; } if constexpr (CBuildConfig::isCompiledWithFsxSupport()) { sl << "FSX"; }
if constexpr (CBuildConfig::isCompiledWithMSFSSupport()) { sl << "MSFS2020"; }
if constexpr (CBuildConfig::isCompiledWithMSFS2024Support()) { sl << "MSFS2024"; }
if constexpr (CBuildConfig::isCompiledWithXPlaneSupport()) { sl << "XPlane"; } if constexpr (CBuildConfig::isCompiledWithXPlaneSupport()) { sl << "XPlane"; }
if constexpr (CBuildConfig::isCompiledWithP3DSupport()) { sl << "P3D"; } if constexpr (CBuildConfig::isCompiledWithP3DSupport()) { sl << "P3D"; }
if constexpr (CBuildConfig::isCompiledWithFGSupport()) { sl << "FG"; } if constexpr (CBuildConfig::isCompiledWithFGSupport()) { sl << "FG"; }