equal
deleted
inserted
replaced
|
1 load(data_caging_paths) |
1 include(spectrum.pri) |
2 include(spectrum.pri) |
2 |
3 |
3 TEMPLATE = subdirs |
4 TEMPLATE = subdirs |
4 |
5 |
5 # Ensure that library is built before application |
6 # Ensure that library is built before application |
12 SUBDIRS += app |
13 SUBDIRS += app |
13 |
14 |
14 TARGET = spectrum |
15 TARGET = spectrum |
15 |
16 |
16 symbian { |
17 symbian { |
17 load(data_caging_paths) |
|
18 |
|
19 # Create a 'make sis' rule which can be run from the top-level |
18 # Create a 'make sis' rule which can be run from the top-level |
20 |
19 |
21 include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) |
20 include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) |
22 |
21 |
23 # UID for the SIS file |
22 # UID for the SIS file |
24 TARGET.UID3 = 0xA000E3FA |
23 TARGET.UID3 = 0xA000E3FA |
|
24 |
|
25 bin.sources = spectrum.exe |
|
26 !contains(DEFINES, DISABLE_FFT) { |
|
27 bin.sources += fftreal.dll |
|
28 } |
|
29 bin.path = /sys/bin |
|
30 rsc.sources = $${EPOCROOT}$$HW_ZDIR$$APP_RESOURCE_DIR/spectrum.rsc |
|
31 rsc.path = $$APP_RESOURCE_DIR |
|
32 mif.sources = $${EPOCROOT}$$HW_ZDIR$$APP_RESOURCE_DIR/spectrum.mif |
|
33 mif.path = $$APP_RESOURCE_DIR |
|
34 reg_rsc.sources = $${EPOCROOT}$$HW_ZDIR$$REG_RESOURCE_IMPORT_DIR/spectrum_reg.rsc |
|
35 reg_rsc.path = $$REG_RESOURCE_IMPORT_DIR |
|
36 DEPLOYMENT += bin rsc mif reg_rsc |
|
37 |
25 } |
38 } |
26 |
|
27 sources.files = README.txt spectrum.pri spectrum.pro TODO.txt |
|
28 sources.path = $$[QT_INSTALL_DEMOS]/spectrum |
|
29 INSTALLS += sources |
|
30 |
|