Turn on Control Flow Guard for MSVC builds

The performance impact should be negligible according to the
documentation on msdn.
Closes #9101.
This commit is contained in:
Chocobo1 2018-06-16 17:58:29 +08:00
parent 7d9cc04c88
commit 171bc77059
No known key found for this signature in database
GPG key ID: 210D9C873253A68C

View file

@ -61,3 +61,8 @@ DEFINES += BOOST_USE_WINAPI_VERSION=0x0501
# Enable stack trace support # Enable stack trace support
CONFIG += stacktrace CONFIG += stacktrace
win32-msvc* {
QMAKE_CXXFLAGS += "/guard:cf"
QMAKE_LFLAGS += "/guard:cf"
}