/[svn]/qsampler/trunk/src/src.pro
ViewVC logotype

Contents of /qsampler/trunk/src/src.pro

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2457 - (show annotations) (download)
Mon Jul 1 10:16:35 2013 UTC (10 years, 9 months ago) by capela
File size: 2760 byte(s)
- qmake project name fix.
1 # qsampler.pro
2 #
3 NAME = qsampler
4
5 TARGET = $${NAME}
6 TEMPLATE = app
7
8 include(src.pri)
9
10 #DEFINES += DEBUG
11
12 HEADERS += config.h \
13 qsamplerAbout.h \
14 qsamplerOptions.h \
15 qsamplerChannel.h \
16 qsamplerMessages.h \
17 qsamplerInstrument.h \
18 qsamplerInstrumentList.h \
19 qsamplerDevice.h \
20 qsamplerFxSend.h \
21 qsamplerFxSendsModel.h \
22 qsamplerUtilities.h \
23 qsamplerInstrumentForm.h \
24 qsamplerInstrumentListForm.h \
25 qsamplerDeviceForm.h \
26 qsamplerDeviceStatusForm.h \
27 qsamplerChannelStrip.h \
28 qsamplerChannelForm.h \
29 qsamplerChannelFxForm.h \
30 qsamplerOptionsForm.h \
31 qsamplerMainForm.h
32
33 SOURCES += \
34 qsampler.cpp \
35 qsamplerOptions.cpp \
36 qsamplerChannel.cpp \
37 qsamplerMessages.cpp \
38 qsamplerInstrument.cpp \
39 qsamplerInstrumentList.cpp \
40 qsamplerDevice.cpp \
41 qsamplerFxSend.cpp \
42 qsamplerFxSendsModel.cpp \
43 qsamplerUtilities.cpp \
44 qsamplerInstrumentForm.cpp \
45 qsamplerInstrumentListForm.cpp \
46 qsamplerDeviceForm.cpp \
47 qsamplerDeviceStatusForm.cpp \
48 qsamplerChannelStrip.cpp \
49 qsamplerChannelForm.cpp \
50 qsamplerChannelFxForm.cpp \
51 qsamplerOptionsForm.cpp \
52 qsamplerMainForm.cpp
53
54 FORMS += \
55 qsamplerInstrumentForm.ui \
56 qsamplerInstrumentListForm.ui \
57 qsamplerDeviceForm.ui \
58 qsamplerChannelStrip.ui \
59 qsamplerChannelForm.ui \
60 qsamplerChannelFxForm.ui \
61 qsamplerOptionsForm.ui \
62 qsamplerMainForm.ui
63
64 RESOURCES += \
65 qsampler.qrc
66
67 TRANSLATIONS += \
68 translations/qsampler_cs.ts \
69 translations/qsampler_ru.ts
70
71
72 unix {
73
74 # variables
75 OBJECTS_DIR = .obj
76 MOC_DIR = .moc
77 UI_DIR = .ui
78
79 isEmpty(PREFIX) {
80 PREFIX = /usr/local
81 }
82
83 BINDIR = $${PREFIX}/bin
84 DATADIR = $${PREFIX}/share
85 LOCALEDIR = $(localedir)
86
87 DEFINES += DATADIR=\"$${DATADIR}\"
88
89 !isEmpty(LOCALEDIR) {
90 DEFINES += LOCALEDIR=\"$${LOCALEDIR}\"
91 }
92
93 # make install
94 INSTALLS += target desktop icon \
95 icon_scalable mimeinfo mimetypes mimetypes_scalable
96
97 target.path = $${BINDIR}
98
99 desktop.path = $${DATADIR}/applications
100 desktop.files += $${NAME}.desktop
101
102 icon.path = $${DATADIR}/icons/hicolor/32x32/apps
103 icon.files += images/$${NAME}.png
104
105 icon_scalable.path = $${DATADIR}/icons/hicolor/scalable/apps
106 icon_scalable.files += images/$${NAME}.svgz
107
108 mimeinfo.path = $${DATADIR}/mime/packages
109 mimeinfo.files += mimetypes/$${NAME}.xml
110
111 mimetypes.path = $${DATADIR}/icons/hicolor/32x32/mimetypes
112 mimetypes.files += mimetypes/application-x-$${NAME}-session.png
113
114 mimetypes_scalable.path = $${DATADIR}/icons/hicolor/scalable/mimetypes
115 mimetypes_scalable.files += mimetypes/application-x-$${NAME}-session.svgz
116 }
117
118 win32 {
119
120 CONFIG(debug, debug|release): CONFIG += console
121 INSTALLS += target
122 target.path = $${PREFIX}/bin
123 }
124
125 macx {
126
127 QMAKE_MAC_SDK = $$(SDKROOT)
128 CONFIG += $$(QMAKE_ARCHS)
129 }
130
131
132 # QT5 support
133 !lessThan(QT_MAJOR_VERSION, 5) {
134 QT += widgets
135 }

  ViewVC Help
Powered by ViewVC