summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Keller <Rainer.Keller@qt.io>2018-05-02 15:47:41 +0200
committerRainer Keller <Rainer.Keller@qt.io>2018-05-14 07:52:57 +0000
commitd2add35b1bebcc97b812b49a9208199e963ff6c2 (patch)
tree815a7812d4bb7949ef7a55bbf952a294cbeef7bd
parent862d205b6c2ef29f464231b7f7db63bf2cbb07ec (diff)
uacpp: Fix style of project file
The load statement and plugin variables are supposed to be at the end of the file. Change-Id: I948b9426e2b194cdc9f4807f45ecbe2dbfde8c97 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
-rw-r--r--src/plugins/opcua/uacpp/uacpp.pro8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/opcua/uacpp/uacpp.pro b/src/plugins/opcua/uacpp/uacpp.pro
index 723f81e..411a652 100644
--- a/src/plugins/opcua/uacpp/uacpp.pro
+++ b/src/plugins/opcua/uacpp/uacpp.pro
@@ -1,10 +1,6 @@
TARGET = uacpp_backend
QT += core core-private opcua opcua-private network
-PLUGIN_TYPE = opcua
-PLUGIN_CLASS_NAME = QUACppPlugin
-load(qt_plugin)
-
win32 {
CONFIG(debug, debug|release): LIBS += uaclientd.lib uabased.lib coremoduled.lib uastackd.lib uapkid.lib xmlparserd.lib
else: LIBS += uaclient.lib uabase.lib coremodule.lib uastack.lib uapki.lib xmlparser.lib
@@ -40,3 +36,7 @@ SOURCES += \
quacpputils.cpp
OTHER_FILES = uacpp-metadata.json
+
+PLUGIN_TYPE = opcua
+PLUGIN_CLASS_NAME = QUACppPlugin
+load(qt_plugin)