summaryrefslogtreecommitdiffstats
path: root/src/winrtrunner
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2017-05-02 13:27:47 +0200
committerOliver Wolff <oliver.wolff@qt.io>2017-05-02 13:12:27 +0000
commit07ebe565913f8cdc531c862fed62d0398c83ecc4 (patch)
treea1d643d687fc347afcb397c74a75b213fbc81b7f /src/winrtrunner
parent256bbc4f139036a780a63b80af8bb461a77d333a (diff)
Fix winrtrunner for VS 2017
As we only support VS 2015+ the conditions can be dropped. Change-Id: Idd1763265d63e65dddbec810ee7984fcfa7b75cc Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'src/winrtrunner')
-rw-r--r--src/winrtrunner/winrtrunner.pro28
1 files changed, 15 insertions, 13 deletions
diff --git a/src/winrtrunner/winrtrunner.pro b/src/winrtrunner/winrtrunner.pro
index 73ca2cdd4..21f2c8310 100644
--- a/src/winrtrunner/winrtrunner.pro
+++ b/src/winrtrunner/winrtrunner.pro
@@ -3,21 +3,23 @@ CONFIG += force_bootstrap
DEFINES += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII WINRT_LIBRARY
-SOURCES += main.cpp runner.cpp
-HEADERS += runner.h runnerengine.h
+SOURCES += \
+ main.cpp \
+ runner.cpp \
+ appxengine.cpp \
+ appxlocalengine.cpp \
+ appxphoneengine.cpp
-DEFINES += RTRUNNER_NO_APPXLOCAL RTRUNNER_NO_APPXPHONE
+HEADERS += \
+ runner.h \
+ runnerengine.h \
+ appxengine.h \
+ appxengine_p.h \
+ appxlocalengine.h \
+ appxphoneengine.h
-win32-msvc2013|win32-msvc2015 {
- SOURCES += appxengine.cpp appxlocalengine.cpp appxphoneengine.cpp
- HEADERS += appxengine.h appxengine_p.h appxlocalengine.h appxphoneengine.h
- LIBS += -lruntimeobject -lwsclient -lShlwapi -lurlmon -lxmllite
- DEFINES -= RTRUNNER_NO_APPXLOCAL RTRUNNER_NO_APPXPHONE
+LIBS += -lruntimeobject -lwsclient -lShlwapi -lurlmon -lxmllite -lcrypt32
- include(../shared/corecon/corecon.pri)
-}
-
-# Windows 10 requires signing
-*msvc2015: LIBS += -lcrypt32
+include(../shared/corecon/corecon.pri)
load(qt_tool)