summaryrefslogtreecommitdiffstats
path: root/src/network/configure.json
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2019-04-12 15:46:35 +0200
committerMårten Nordheim <marten.nordheim@qt.io>2019-07-08 12:12:45 +0200
commitdc431b7e8548e97d19770285a6160ecfa8874815 (patch)
treebf494c7852e2efe997b0f9f452968ba1217575d7 /src/network/configure.json
parent682e4795fe7a5ae64268212b23ff96706a0822d9 (diff)
Introduce QNetwork(Connection|Status)Monitor to Windows
Currently not available for mingw because it's missing all the interfaces. But should start working once it has them. Change-Id: I231e8b69e008c5300a83087fe9cd071acd0687cb Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Diffstat (limited to 'src/network/configure.json')
-rw-r--r--src/network/configure.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/network/configure.json b/src/network/configure.json
index 56805da7b2..9652dfd1f7 100644
--- a/src/network/configure.json
+++ b/src/network/configure.json
@@ -208,6 +208,22 @@
"main": ["gss_ctx_id_t ctx;"],
"qmake": "LIBS += -lgssapi_krb5"
}
+ },
+ "netlistmgr": {
+ "label": "Network List Manager",
+ "type": "compile",
+ "test": {
+ "include": [ "netlistmgr.h", "wrl/client.h" ],
+ "main": [
+ "using namespace Microsoft::WRL;",
+ "ComPtr<INetworkListManager> networkListManager;",
+ "ComPtr<IConnectionPoint> connectionPoint;",
+ "ComPtr<IConnectionPointContainer> connectionPointContainer;",
+ "networkListManager.As(&connectionPointContainer);",
+ "connectionPointContainer->FindConnectionPoint(IID_INetworkConnectionEvents, &connectionPoint);"
+ ],
+ "qmake": "LIBS += -lOle32"
+ }
}
},
@@ -397,6 +413,13 @@
"section": "Networking",
"condition": "config.win32 && !config.winrt",
"output": [ "publicFeature", "feature" ]
+ },
+ "netlistmgr": {
+ "label": "Network List Manager",
+ "purpose": "Use Network List Manager to keep track of network connectivity",
+ "section": "Networking",
+ "condition": "config.win32 && tests.netlistmgr",
+ "output": [ "privateFeature" ]
}
},