summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorYuhang Zhao <yuhangzhao@deepin.org>2023-10-07 14:49:20 +0800
committerYuhang Zhao <yuhangzhao@deepin.org>2023-10-08 12:57:49 +0800
commit95f103edab228000d78f7377e3c2ff20b5144474 (patch)
treebf6abcabb88f6af9f2bce0c6026d9115bc2397a7 /qmake
parent88406f446c1ee1ae3e015379fff04df804535f93 (diff)
clang-cl: remove unneeded workaround
This piece of code may be some old workaround, but anyway Qt doesn't need it anymore. Removing them doesn't cause any compilation errors or even warnings. We should not keep any workaround if they are not needed anymore. Change-Id: Ieae8c2b005fa5e556c838d78d839d498101f28ff Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/CMakeLists.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/qmake/CMakeLists.txt b/qmake/CMakeLists.txt
index 41bf2c77d9..836b49c223 100644
--- a/qmake/CMakeLists.txt
+++ b/qmake/CMakeLists.txt
@@ -125,12 +125,6 @@ qt_internal_extend_target(${target_name} CONDITION WIN32
_SCL_SECURE_NO_WARNINGS
)
-qt_internal_extend_target(${target_name} CONDITION CLANG AND WIN32
- COMPILE_OPTIONS
- "-fms-compatibility-version=19.00.23506"
- "-Wno-microsoft-enum-value"
-)
-
set_target_properties(${target_name} PROPERTIES
AUTOMOC OFF
AUTORCC OFF