aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/process_stub.pro
blob: 2db5358883f3bb44aa1beb31ad5171cd8c6896ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CONFIG          += warn_on console use_c_linker
CONFIG          -= qt app_bundle

include(../../../qtcreator.pri)

TEMPLATE        = app
TARGET          = qtcreator_process_stub
DESTDIR         = $$IDE_LIBEXEC_PATH

build_all:!build_pass {
    CONFIG -= build_all
    CONFIG += release
}

unix {
    SOURCES += process_stub_unix.c
    solaris-.*: LIBS += -lsocket
} else {
    SOURCES += process_stub_win.c
    LIBS += -lshell32
}

target.path  = $$INSTALL_LIBEXEC_PATH
INSTALLS    += target