2021-07-07 11:36:03 +02:00
|
|
|
import qbs
|
|
|
|
|
import qbs.FileInfo
|
|
|
|
|
|
|
|
|
|
QtcTool {
|
|
|
|
|
name: "qtcreator_processlauncher"
|
|
|
|
|
|
|
|
|
|
Depends { name: "Qt.network" }
|
|
|
|
|
|
|
|
|
|
cpp.includePaths: base.concat(pathToUtils)
|
|
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"launcherlogging.cpp",
|
|
|
|
|
"launcherlogging.h",
|
|
|
|
|
"launchersockethandler.cpp",
|
|
|
|
|
"launchersockethandler.h",
|
|
|
|
|
"processlauncher-main.cpp",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
property string pathToUtils: sourceDirectory + "/../../libs/utils"
|
|
|
|
|
Group {
|
|
|
|
|
name: "protocol sources"
|
|
|
|
|
prefix: pathToUtils + '/'
|
|
|
|
|
files: [
|
|
|
|
|
"launcherpackets.cpp",
|
|
|
|
|
"launcherpackets.h",
|
2021-08-06 16:20:47 +02:00
|
|
|
"processutils.cpp",
|
|
|
|
|
"processutils.h",
|
2021-07-07 11:36:03 +02:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|