From 171bc770591461bb18ad16c2a0d238169b8912f6 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 16 Jun 2018 17:58:29 +0800 Subject: [PATCH] Turn on Control Flow Guard for MSVC builds The performance impact should be negligible according to the documentation on msdn. Closes #9101. --- conf.pri.windows | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf.pri.windows b/conf.pri.windows index ef6edc773..497d62f87 100644 --- a/conf.pri.windows +++ b/conf.pri.windows @@ -61,3 +61,8 @@ DEFINES += BOOST_USE_WINAPI_VERSION=0x0501 # Enable stack trace support CONFIG += stacktrace + +win32-msvc* { + QMAKE_CXXFLAGS += "/guard:cf" + QMAKE_LFLAGS += "/guard:cf" +}