From 52f8dc7b6dae30934b42147f9774c4e2da217853 Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Sun, 29 Dec 2024 14:32:29 +0100 Subject: [PATCH] fix: Add missing simulators to compiledWith info --- src/config/buildconfig.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config/buildconfig.cpp b/src/config/buildconfig.cpp index a898423e1..a32b3e81a 100644 --- a/src/config/buildconfig.cpp +++ b/src/config/buildconfig.cpp @@ -73,6 +73,8 @@ namespace swift::config QStringList sl; if constexpr (CBuildConfig::isCompiledWithFs9Support()) { sl << "FS9"; } 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::isCompiledWithP3DSupport()) { sl << "P3D"; } if constexpr (CBuildConfig::isCompiledWithFGSupport()) { sl << "FG"; }