blob: 04bbdee2b66f3510a72898274d57fd923602f3ad (
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
|
load(data_caging_paths)
include(spectrum.pri)
TEMPLATE = subdirs
# Ensure that library is built before application
CONFIG += ordered
!contains(DEFINES, DISABLE_FFT) {
SUBDIRS += 3rdparty/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
bin.sources = spectrum.exe
!contains(DEFINES, DISABLE_FFT) {
bin.sources += fftreal.dll
}
bin.path = /sys/bin
rsc.sources = $${EPOCROOT}$$HW_ZDIR$$APP_RESOURCE_DIR/spectrum.rsc
rsc.path = $$APP_RESOURCE_DIR
mif.sources = $${EPOCROOT}$$HW_ZDIR$$APP_RESOURCE_DIR/spectrum.mif
mif.path = $$APP_RESOURCE_DIR
reg_rsc.sources = $${EPOCROOT}$$HW_ZDIR$$REG_RESOURCE_IMPORT_DIR/spectrum_reg.rsc
reg_rsc.path = $$REG_RESOURCE_IMPORT_DIR
DEPLOYMENT += bin rsc mif reg_rsc
}
|