summaryrefslogtreecommitdiff
path: root/src/tools/iostool/iostool.pro
blob: 4ecd607ac22f9732ec639ce46a561ac5565728af (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
25
26
27
28
29
30
31
32
33
34
35
TARGET = iostool

QT       += core
QT       += gui xml network

CONFIG   += console

# Prevent from popping up in the dock when launched.
# We embed the Info.plist file, so the application doesn't need to
# be a bundle.
QMAKE_LFLAGS += -Wl,-sectcreate,__TEXT,__info_plist,\"$$PWD/Info.plist\"
CONFIG -= app_bundle

LIBS += -framework CoreFoundation -framework CoreServices -framework IOKit -framework Security -framework SystemConfiguration

TEMPLATE = app

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

# put into a subdir, so we can deploy a separate qt.conf for it
DESTDIR = $$IDE_LIBEXEC_PATH/ios

RPATH_BASE = $$DESTDIR
include(../../rpath.pri)

SOURCES += main.cpp \
    iosdevicemanager.cpp

HEADERS += \
    iosdevicemanager.h

DISTFILES += Info.plist

target.path = $$INSTALL_LIBEXEC_PATH/ios
INSTALLS += target