summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2019-01-28 08:09:11 +0100
committerAntti Kokko <antti.kokko@qt.io>2019-01-28 11:29:49 +0000
commitb6afde4dd066651aaaa409adb0409420c62a47ff (patch)
tree658fb9281806f82b4831d5b39b717caae9707485
parent63891267c1fe2e483fa305de9102891448c52981 (diff)
Fix corewlan configure test
Configure is unable to find header files that are located in frameworks. Work around that by specifying "include" on "test" level instead of "headers" on "corewlan" level. This amends commit 10adbc4f0f. Change-Id: I0650585eb9a4e881dc2e3733d8db40c6e50cf1f3 Fixes: QTBUG-72964 Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--src/network/configure.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/configure.json b/src/network/configure.json
index 10c4f87a2e..f3e18662aa 100644
--- a/src/network/configure.json
+++ b/src/network/configure.json
@@ -28,9 +28,9 @@
"export": "",
"test": {
"lang": "objc++",
+ "include": [ "CoreWLAN/CoreWLAN.h", "CoreWLAN/CWInterface.h" ],
"main": "[CWInterface interfaceWithName:@\"en2\"];"
},
- "headers": [ "CoreWLAN/CoreWLAN.h", "CoreWLAN/CWInterface.h" ],
"sources": [
"-framework CoreWLAN -framework Foundation"
]