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>
24 lines
448 B
Prolog
24 lines
448 B
Prolog
QT = core
|
|
macx:CONFIG -= app_bundle
|
|
TARGET = pp
|
|
|
|
QTC_LIB_DEPENDS += \
|
|
cplusplus \
|
|
utils
|
|
|
|
include(../../auto/qttest.pri)
|
|
|
|
# Input
|
|
SOURCES += main.cpp
|
|
|
|
unix {
|
|
debug:OBJECTS_DIR = $${OUT_PWD}/.obj/debug-shared
|
|
release:OBJECTS_DIR = $${OUT_PWD}/.obj/release-shared
|
|
|
|
debug:MOC_DIR = $${OUT_PWD}/.moc/debug-shared
|
|
release:MOC_DIR = $${OUT_PWD}/.moc/release-shared
|
|
|
|
RCC_DIR = $${OUT_PWD}/.rcc/
|
|
UI_DIR = $${OUT_PWD}/.uic/
|
|
}
|