blob: 823f61044fcce7f0f64fff38c6b42db698723ce7 (
plain)
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
|
include(spectrum.pri)
TEMPLATE = subdirs
# Ensure that library is built before application
CONFIG += ordered
!contains(DEFINES, DISABLE_FFT) {
SUBDIRS += fftreal
}
SUBDIRS += app
TARGET = spectrum
symbian {
# Create a 'make sis' rule which can be run from the top-level
include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
# UID for the SIS file
TARGET.UID3 = 0xA000E3FA
epoc32_dir = $${EPOCROOT}epoc32
release_dir = $${epoc32_dir}/release/$(PLATFORM)/$(TARGET)
bin.sources = $${release_dir}/spectrum.exe
!contains(DEFINES, DISABLE_FFT) {
bin.sources += $${release_dir}/fftreal.dll
}
bin.path = !:/sys/bin
rsc.sources = $${epoc32_dir}/data/z/resource/apps/spectrum.rsc
rsc.path = !:/resource/apps
mif.sources = $${epoc32_dir}/data/z/resource/apps/spectrum.mif
mif.path = !:/resource/apps
reg_rsc.sources = $${epoc32_dir}/data/z/private/10003a3f/import/apps/spectrum_reg.rsc
reg_rsc.path = !:/private/10003a3f/import/apps
DEPLOYMENT += bin rsc mif reg_rsc
}
|