Skip to content
Snippets Groups Projects
Commit 2f86d5c3 authored by Christian Kandeler's avatar Christian Kandeler Committed by Joerg Bornemann
Browse files

Zeroconf: Add qbs project file.


Change-Id: I1c0fa6cd7a77bab87c41cfa15eb7d4ceb93a697b
Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@nokia.com>
parent 2d2dfac8
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ Project {
"src/libs/qtcomponents/styleitem/styleitem.qbs",
"src/libs/symbianutils/symbianutils.qbs",
"src/libs/utils/utils.qbs",
"src/libs/zeroconf/zeroconf.qbs",
"src/plugins/analyzerbase/analyzerbase.qbs",
"src/plugins/bazaar/bazaar.qbs",
"src/plugins/bineditor/bineditor.qbs",
......
import qbs.base 1.0
DynamicLibrary {
name: "zeroconf"
destination: "lib"
Depends { name: "cpp" }
Depends { name: "Qt.network" }
cpp.includePaths: "."
Properties {
condition: qbs.targetOS == "windows"
cpp.dynamicLibraries: "ws2_32"
}
Properties {
condition: qbs.targetOS == "linux"
cpp.defines: [ "_GNU_SOURCE HAVE_IPV6", "USES_NETLINK", "HAVE_LINUX", "TARGET_OS_LINUX" ]
}
files: [
"servicebrowser.cpp", "servicebrowser.h", "servicebrowser_p.h",
"embeddedLib.cpp",
"mdnsderived.cpp", "mdnsderived.h",
"avahiLib.cpp",
"dnsSdLib.cpp",
"dns_sd_types.h",
"zeroconf_global.h",
"syssocket.h"
]
ProductModule { cpp.includePaths: "." }
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment