Fix compilation if no private headers are available

This commit is contained in:
Kai Koehne
2010-07-21 12:33:47 +02:00
parent e4a2b6fd7d
commit c969b6e1cc

View File

@@ -1,13 +1,12 @@
HEADERS += \
$$PWD/qmlengine.h \
$$PWD/canvasframerate.h \
include(../../../private_headers.pri)
exists(${QT_PRIVATE_HEADERS}/QtDeclarative/private/qdeclarativecontext_p.h) {
HEADERS += \
$$PWD/qmlengine.h \
$$PWD/canvasframerate.h \
SOURCES += \
$$PWD/qmlengine.cpp \
$$PWD/canvasframerate.cpp \
SOURCES += \
$$PWD/qmlengine.cpp \
$$PWD/canvasframerate.cpp \
QT += declarative
FORMS +=
RESOURCES +=
QT += declarative
}