blob: 834b2c1a7e33fd90b9b661d8c691aa9db4243f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
HEADERS = mainwindow.h
SOURCES = main.cpp \
mainwindow.cpp
# App cannot be with name "calendar" in Symbian due to same named system component.
symbian: TARGET = calendarapp
# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext/calendar
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS calendar.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext/calendar
INSTALLS += target sources
symbian: CONFIG += qt_example
maemo5: CONFIG += qt_example
|