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>
19 lines
495 B
Plaintext
19 lines
495 B
Plaintext
#
|
|
# qmake configuration for winrt-x86-msvc2012
|
|
#
|
|
# Written for Microsoft Visual C++ 2012
|
|
#
|
|
|
|
include(../common/winrt_winphone/qmake.conf)
|
|
QMAKE_COMPILER_DEFINES += _MSC_VER=1700
|
|
DEFINES += WINAPI_FAMILY=WINAPI_FAMILY_APP X86 __X86__ __x86__
|
|
|
|
QMAKE_LFLAGS += /SAFESEH /MACHINE:X86
|
|
|
|
QMAKE_LIBS += windowscodecs.lib kernel32.lib ole32.lib
|
|
|
|
VCPROJ_ARCH = x86
|
|
MSVC_VER = 11.0
|
|
WINSDK_VER = 8.0
|
|
WINTARGET_VER = win8
|