9020bdcc33
Between the very latest images linking against kernel32.lib has been forbidden. This is completely undocumented and only throws a "dependent dll not found" error. Instead we should link against OneCore for msvc2015, which can be used for Windows 10 Desktop and Mobile. Task-number: QTBUG-49349 Change-Id: I21d32a92dfd41548ca563d3e56c623a0cb297588 Reviewed-by: Oliver Wolff <oliver.wolff@theqtcompany.com>
23 lines
765 B
Plaintext
23 lines
765 B
Plaintext
#
|
|
# qmake configuration for winrt-x64-msvc2015
|
|
#
|
|
# Written for Microsoft Visual C++ 2015
|
|
#
|
|
|
|
include(../common/winrt_winphone/qmake.conf)
|
|
QMAKE_COMPILER_DEFINES += _MSC_VER=1900 _WIN32
|
|
DEFINES += WINAPI_FAMILY=WINAPI_FAMILY_PC_APP WINAPI_PARTITION_PHONE_APP=1 X64 __X64__ __x64__
|
|
|
|
QMAKE_CFLAGS += -FS
|
|
QMAKE_CXXFLAGS += -FS
|
|
QMAKE_LFLAGS += /MACHINE:X64 /NODEFAULTLIB:kernel32.lib
|
|
|
|
QMAKE_LIBS += windowscodecs.lib WindowsApp.lib runtimeobject.lib OneCore.lib
|
|
|
|
VCPROJ_ARCH = x64
|
|
MSVC_VER = 14.0
|
|
WINSDK_VER = 10.0
|
|
WINTARGET_VER = winv10.0
|
|
WINRT_MANIFEST = $$PWD/../common/winrt_winphone/manifests/10.0/AppxManifest.xml.in
|
|
WINRT_MANIFEST.architecture = x64
|