forked from qt-creator/qt-creator
Use the new contains function and the targetOS list. Change-Id: I38b995eb9328e449befad85792512c45670cc8c9 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
26 lines
536 B
QML
26 lines
536 B
QML
import qbs.base 1.0
|
|
import "../QtcTool.qbs" as QtcTool
|
|
|
|
QtcTool {
|
|
name: "qtcdebugger"
|
|
condition: qbs.targetOS.contains("windows")
|
|
|
|
cpp.includePaths: [
|
|
buildDirectory,
|
|
"../../shared/registryaccess"
|
|
]
|
|
cpp.dynamicLibraries: [
|
|
"psapi",
|
|
"advapi32"
|
|
]
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "app_version_header" }
|
|
|
|
files: [
|
|
"main.cpp",
|
|
"../../shared/registryaccess/registryaccess.cpp",
|
|
"../../shared/registryaccess/registryaccess.h",
|
|
]
|
|
}
|