e35c2c57cf
Those flags are required to pass the Windows Store App Certification process. Otherwise apps are not allowed to be published. The SAFESEH option is only required for x86. According to documentation APPCONTAINER only talks about the executable, but when running through the certification, the Qt modules are reported to be errornous as well. Change-Id: I5450687dcd5bc537149e331332e253c4617df55d Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Oliver Wolff <oliver.wolff@digia.com> Reviewed-by: Andrew Knight <andrew.knight@digia.com>
21 lines
565 B
Plaintext
21 lines
565 B
Plaintext
#
|
|
# qmake configuration for winrt-x86-msvc2013
|
|
#
|
|
# Written for Microsoft Visual C++ 2013
|
|
#
|
|
|
|
include(../common/winrt_winphone/qmake.conf)
|
|
QMAKE_COMPILER_DEFINES += _MSC_VER=1800 _WIN32
|
|
DEFINES += WINAPI_FAMILY=WINAPI_FAMILY_APP X86 __X86__ __x86__
|
|
|
|
QMAKE_CFLAGS += -FS
|
|
QMAKE_CXXFLAGS += -FS
|
|
QMAKE_LFLAGS += /SAFESEH /MACHINE:X86
|
|
|
|
QMAKE_LIBS += windowscodecs.lib kernel32.lib ole32.lib
|
|
|
|
VCPROJ_ARCH = x86
|
|
MSVC_VER = 12.0
|
|
WINSDK_VER = 8.1
|
|
WINTARGET_VER = winv6.3
|