-
Notifications
You must be signed in to change notification settings - Fork 1
/
rpn-calc.pri
40 lines (35 loc) · 1.38 KB
/
rpn-calc.pri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# The name of your app.
# NOTICE: name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, following needs to be
# done to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
SOURCES += \
../common/src/settingsmanager.cpp
HEADERS += \
../common/src/settingsmanager.h
OTHER_FILES += \
../common/icons/86x86/apps/harbour-rpncalc.png \
../common/icons/108x108/apps/harbour-rpncalc.png \
../common/icons/128x128/apps/harbour-rpncalc.png \
../common/icons/172x172/apps/harbour-rpncalc.png \
../common/icons/256x256/apps/harbour-rpncalc.png \
../common/python/rpncalc_sympy_functions.py \
../common/python/rpncalc_constants.py \
../common/python/rpncalc_engine.py \
../common/qml/elements/KeyboardButton.qml \
../common/qml/elements/CalcScreen.qml \
../common/qml/elements/Memory.qml \
../common/qml/elements/StdKeyboard.qml \
../common/qml/elements/Popup.qml \
../common/qml/elements/StackFlick.qml \
../common/qml/elements/OperandEditor.qml \
../TODO.txt \
../LICENSE \
../README
RESOURCES += \
$$PWD/common/qml/commonqml.qrc
DISTFILES += \
$$PWD/common/qml/elements/CustomGlassItem.qml