CMake: Regenerate src/plugins/bearer
Change-Id: I6c900247eb03b8afc3f299b5dbca5bac64527a52 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
9ffcc76188
commit
0434b7fb38
@ -1,9 +1,11 @@
|
||||
if (NOT ANDROID AND LINUX AND QT_FEATURE_dbus)
|
||||
# Generated from bearer.pro.
|
||||
|
||||
if(NOT ANDROID AND LINUX AND TARGET Qt::DBus) # special case
|
||||
add_subdirectory(generic)
|
||||
add_subdirectory(connman)
|
||||
add_subdirectory(networkmanager)
|
||||
elseif(ANDROID AND NOT ANDROID_EMBEDDED)
|
||||
# TODO add_subdirectory(android)
|
||||
else()
|
||||
else if(ANDROID AND NOT ANDROID_EMBEDDED) # special case
|
||||
add_subdirectory(android)
|
||||
else() # special case
|
||||
add_subdirectory(generic)
|
||||
endif()
|
||||
|
@ -14,12 +14,14 @@ add_qt_plugin(qconnmanbearer
|
||||
qconnmanengine.cpp qconnmanengine.h
|
||||
qconnmanservice_linux.cpp qconnmanservice_linux_p.h
|
||||
LIBRARIES
|
||||
Qt::NetworkPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Core
|
||||
Qt::DBus
|
||||
Qt::NetworkPrivate
|
||||
Qt::Network
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:connman.pro:<NONE>:
|
||||
#### Keys ignored in scope 1:.:.:connman.pro:<TRUE>:
|
||||
# OTHER_FILES = "connman.json"
|
||||
# PLUGIN_CLASS_NAME = "QConnmanEnginePlugin"
|
||||
# _LOADED = "qt_plugin"
|
||||
|
@ -15,9 +15,12 @@ add_qt_plugin(qgenericbearer
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
Qt::NetworkPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Core
|
||||
Qt::Network
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:generic.pro:<NONE>:
|
||||
#### Keys ignored in scope 1:.:.:generic.pro:<TRUE>:
|
||||
# OTHER_FILES = "generic.json"
|
||||
# PLUGIN_CLASS_NAME = "QGenericEnginePlugin"
|
||||
# _LOADED = "qt_plugin"
|
||||
@ -26,6 +29,6 @@ add_qt_plugin(qgenericbearer
|
||||
#####################################################################
|
||||
|
||||
extend_target(qgenericbearer CONDITION WIN32 AND NOT WINRT
|
||||
LIBRARIES
|
||||
PUBLIC_LIBRARIES
|
||||
iphlpapi
|
||||
)
|
||||
|
@ -14,12 +14,14 @@ add_qt_plugin(qnmbearer
|
||||
qnetworkmanagerengine.cpp qnetworkmanagerengine.h
|
||||
qnetworkmanagerservice.cpp qnetworkmanagerservice.h
|
||||
LIBRARIES
|
||||
Qt::NetworkPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Qt::Core
|
||||
Qt::DBus
|
||||
Qt::NetworkPrivate
|
||||
Qt::Network
|
||||
)
|
||||
|
||||
#### Keys ignored in scope 1:.:networkmanager.pro:<NONE>:
|
||||
#### Keys ignored in scope 1:.:.:networkmanager.pro:<TRUE>:
|
||||
# OTHER_FILES = "networkmanager.json"
|
||||
# PLUGIN_CLASS_NAME = "QNetworkManagerEnginePlugin"
|
||||
# _LOADED = "qt_plugin"
|
||||
|
Loading…
Reference in New Issue
Block a user