~ubuntu-branches/ubuntu/wily/qsampler/wily

« back to all changes in this revision

Viewing changes to qsampler.pro.in

  • Committer: Package Import Robot
  • Author(s): Jaromír Mikeš
  • Date: 2015-04-26 17:30:50 UTC
  • mfrom: (5.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20150426173050-0o46g530ngbdaco1
Tags: 0.3.0-1
* Imported Upstream version 0.3.0
* Fix VCS fields.
* Removed patches - they don't apply anymore.
* Add desktop patch.
* Add description to patch.
* Install upstream desktop file.
* Update copyright file.
* Enable parallel build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INCPATH  += ./src
2
 
 
3
 
HEADERS   = src/qsamplerAbout.h \
4
 
                        src/qsamplerOptions.h \
5
 
                        src/qsamplerChannel.h \
6
 
                        src/qsamplerMessages.h \
7
 
                        src/qsamplerInstrument.h \
8
 
                        src/qsamplerInstrumentList.h \
9
 
                        src/qsamplerDevice.h \
10
 
                        src/qsamplerFxSend.h \
11
 
                        src/qsamplerFxSendsModel.h \
12
 
                        src/qsamplerUtilities.h \
13
 
                        src/qsamplerInstrumentForm.h \
14
 
                        src/qsamplerInstrumentListForm.h \
15
 
                        src/qsamplerDeviceForm.h \
16
 
                        src/qsamplerDeviceStatusForm.h \
17
 
                        src/qsamplerChannelStrip.h \
18
 
                        src/qsamplerChannelForm.h \
19
 
                        src/qsamplerChannelFxForm.h \
20
 
                        src/qsamplerOptionsForm.h \
21
 
                        src/qsamplerMainForm.h
22
 
 
23
 
SOURCES   = src/main.cpp \
24
 
                        src/qsamplerOptions.cpp \
25
 
                        src/qsamplerChannel.cpp \
26
 
                        src/qsamplerMessages.cpp \
27
 
                        src/qsamplerInstrument.cpp \
28
 
                        src/qsamplerInstrumentList.cpp \
29
 
                        src/qsamplerDevice.cpp \
30
 
                        src/qsamplerFxSend.cpp \
31
 
                        src/qsamplerFxSendsModel.cpp \
32
 
                        src/qsamplerUtilities.cpp \
33
 
                        src/qsamplerInstrumentForm.cpp \
34
 
                        src/qsamplerInstrumentListForm.cpp \
35
 
                        src/qsamplerDeviceForm.cpp \
36
 
                        src/qsamplerDeviceStatusForm.cpp \
37
 
                        src/qsamplerChannelStrip.cpp \
38
 
                        src/qsamplerChannelForm.cpp \
39
 
                        src/qsamplerChannelFxForm.cpp \
40
 
                        src/qsamplerOptionsForm.cpp \
41
 
                        src/qsamplerMainForm.cpp
42
 
 
43
 
FORMS     = src/qsamplerInstrumentForm.ui \
44
 
                        src/qsamplerInstrumentListForm.ui \
45
 
                        src/qsamplerDeviceForm.ui \
46
 
                        src/qsamplerChannelStrip.ui \
47
 
                        src/qsamplerChannelForm.ui \
48
 
                        src/qsamplerChannelFxForm.ui \
49
 
                        src/qsamplerOptionsForm.ui \
50
 
                        src/qsamplerMainForm.ui
51
 
 
52
 
RESOURCES = icons/qsampler.qrc
53
 
 
54
 
TEMPLATE  = app
55
 
CONFIG   += qt thread warn_on @ac_debug@
56
 
LANGUAGE  = C++
57
 
 
58
 
TRANSLATIONS += translations/qsampler_ru.ts
59
 
 
60
 
LIBS     += @ac_libs@ -lX11
61
 
INCPATH  += @ac_incpath@
62
 
 
63
 
OBJECTS_DIR = .obj
64
 
MOC_DIR     = .moc
65
 
UI_DIR      = .ui
66
 
 
67
 
QMAKE_CFLAGS_RELEASE += $(QT_CFLAGS)
68
 
QMAKE_CFLAGS_DEBUG += $(QT_CFLAGS)
69
 
QMAKE_CXXFLAGS += $(QT_CXXFLAGS)
70
 
 
71
 
macx {
72
 
        QMAKE_MAC_SDK = $$(SDKROOT)
73
 
        CONFIG += $$(QMAKE_ARCHS)
74
 
}