forked from qt-creator/qt-creator
instead of directly including the respective pri files in *_dependencies.pri, set variables and let qtcreator.pri resolve them to includes. this will allow us to re-use the dependency info elsewhere. Change-Id: Iaa33924e428ac0409660f42df2f98a7978452d3e Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
26 lines
512 B
Prolog
26 lines
512 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-03-01T11:08:57
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
# Utils lib requires gui, too.
|
|
QT += core
|
|
QT += gui
|
|
|
|
QTC_LIB_DEPENDS += utils
|
|
include(../../../qtcreator.pri)
|
|
|
|
# -- Add creator 'utils' lib
|
|
macx:QMAKE_LFLAGS += -Wl,-rpath,\"$$IDE_BIN_PATH/..\"
|
|
|
|
TARGET = process
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
TEMPLATE = app
|
|
SOURCES += main.cpp \
|
|
mainwindow.cpp
|
|
|
|
HEADERS += \
|
|
mainwindow.h
|