forked from qt-creator/qt-creator
The Info.plist.in files are actually handled by static.pro.
The projects should only be compiled from the deployed sources in the
build tree.
This reverts commit 30c602f458.
Change-Id: Ib63fb9e4db1c249817e59239029db7dd220ba5b3
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
23 lines
523 B
Prolog
23 lines
523 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-02-24T10:21:38
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
TARGET = qmldump
|
|
QT += declarative
|
|
CONFIG += console
|
|
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp \
|
|
qmlstreamwriter.cpp
|
|
|
|
# generation of Info.plist from Info.plist.in is handled by static.pro
|
|
# compiling this project directly from the Qt Creator source tree does not work
|
|
OTHER_FILES += Info.plist
|
|
macx:QMAKE_INFO_PLIST = Info.plist
|
|
|
|
HEADERS += \
|
|
qmlstreamwriter.h
|