1# -------------------------------------------------------------------
2# Project file for the WebKit2 sandbox process binary
3#
4# See 'Tools/qmake/README' for an overview of the build system
5# -------------------------------------------------------------------
6
7TEMPLATE = app
8
9TARGET = SUIDSandboxHelper
10DESTDIR = $${ROOT_BUILD_DIR}/bin
11
12CONFIG += console
13CONFIG -= qt
14
15SOURCES += Shared/linux/SandboxProcess/SandboxEnvironmentLinux.cpp
16HEADERS += Shared/linux/SandboxProcess/SandboxEnvironmentLinux.h
17
18INSTALLS += target
19LIBS += -lcap -ldl
20
21isEmpty(INSTALL_BINS) {
22    target.path = $$[QT_INSTALL_BINS]
23} else {
24    target.path = $$INSTALL_BINS
25}
26