summaryrefslogtreecommitdiffstats
path: root/examples/network
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-05-22 16:23:24 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-05-22 14:58:24 +0000
commitfa21d29b7506e21db8a433e117aebb9f3c724f03 (patch)
tree948fda13d49223bef78f982e6f67a140e4df6907 /examples/network
parent0425ee06102410026f436adfd440aa2f0b3efd61 (diff)
Rerun pro2cmake on projects that use .ui files
Task-number: QTBUG-75875 Change-Id: I95109b07fc4a6e09fe7911a21fc5f27f2c895d77 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Qt CMake Build Bot
Diffstat (limited to 'examples/network')
-rw-r--r--examples/network/bearermonitor/CMakeLists.txt8
-rw-r--r--examples/network/http/CMakeLists.txt4
-rw-r--r--examples/network/network-chat/CMakeLists.txt4
3 files changed, 11 insertions, 5 deletions
diff --git a/examples/network/bearermonitor/CMakeLists.txt b/examples/network/bearermonitor/CMakeLists.txt
index 001e5c7e2e..83c45fb21a 100644
--- a/examples/network/bearermonitor/CMakeLists.txt
+++ b/examples/network/bearermonitor/CMakeLists.txt
@@ -13,19 +13,21 @@ add_qt_executable(bearermonitor
bearermonitor_640_480.ui
main.cpp
sessionwidget.cpp sessionwidget.h sessionwidget.ui
- LIBRARIES
+ PUBLIC_LIBRARIES
Qt::Gui
Qt::Network
Qt::Widgets
+ ENABLE_AUTOGEN_TOOLS
+ uic
)
-#### Keys ignored in scope 1:.:bearermonitor.pro:<NONE>:
+#### Keys ignored in scope 1:.:.:bearermonitor.pro:<TRUE>:
# CONFIG = "console"
## Scopes:
#####################################################################
extend_target(bearermonitor CONDITION WIN32
- LIBRARIES
+ PUBLIC_LIBRARIES
ws2_32
)
diff --git a/examples/network/http/CMakeLists.txt b/examples/network/http/CMakeLists.txt
index d1c61f1c98..30f6b900e2 100644
--- a/examples/network/http/CMakeLists.txt
+++ b/examples/network/http/CMakeLists.txt
@@ -12,7 +12,9 @@ add_qt_executable(http
authenticationdialog.ui
httpwindow.cpp httpwindow.h
main.cpp
- LIBRARIES
+ PUBLIC_LIBRARIES
Qt::Network
Qt::Widgets
+ ENABLE_AUTOGEN_TOOLS
+ uic
)
diff --git a/examples/network/network-chat/CMakeLists.txt b/examples/network/network-chat/CMakeLists.txt
index 56cd632529..d620d899d1 100644
--- a/examples/network/network-chat/CMakeLists.txt
+++ b/examples/network/network-chat/CMakeLists.txt
@@ -15,7 +15,9 @@ add_qt_executable(network-chat
main.cpp
peermanager.cpp peermanager.h
server.cpp server.h
- LIBRARIES
+ PUBLIC_LIBRARIES
Qt::Network
Qt::Widgets
+ ENABLE_AUTOGEN_TOOLS
+ uic
)