aboutsummaryrefslogtreecommitdiffstats
path: root/src/libexec/qbs_processlauncher/qbs_processlauncher.pro
blob: 1c98d97ae7ef834cddc40e8980e714b654d64259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include(../libexec.pri)

TARGET = qbs_processlauncher
CONFIG += console c++14
CONFIG -= app_bundle
QT = core network

TOOLS_DIR = $$PWD/../../lib/corelib/tools

INCLUDEPATH += $$TOOLS_DIR

HEADERS += \
    launcherlogging.h \
    launchersockethandler.h \
    $$TOOLS_DIR/launcherpackets.h

SOURCES += \
    launcherlogging.cpp \
    launchersockethandler.cpp \
    processlauncher-main.cpp \
    $$TOOLS_DIR/launcherpackets.cpp