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

Diff of /qsampler/trunk/src/src.pro

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2285 by capela, Mon Nov 21 15:58:34 2011 UTC revision 3493 by capela, Sat Mar 9 21:47:46 2019 UTC
# Line 1  Line 1 
1  # qsampler.pro  # qsampler.pro
2  #  #
3  TARGET = qsampler  NAME = qsampler
4    
5    TARGET = $${NAME}
6  TEMPLATE = app  TEMPLATE = app
 DEPENDPATH += .  
 INCLUDEPATH += .  
7    
8  include(src.pri)  include(src.pri)
9    
10  #DEFINES += DEBUG  #DEFINES += DEBUG
11    
12  HEADERS += config.h \  HEADERS += config.h \
13            qsampler.h \
14          qsamplerAbout.h \          qsamplerAbout.h \
15          qsamplerOptions.h \          qsamplerOptions.h \
16          qsamplerChannel.h \          qsamplerChannel.h \
# Line 65  FORMS += \ Line 65  FORMS += \
65  RESOURCES += \  RESOURCES += \
66          qsampler.qrc          qsampler.qrc
67    
68    
69  TRANSLATIONS += \  TRANSLATIONS += \
70      translations/qsampler_cs.ts \          translations/qsampler_cs.ts \
71      translations/qsampler_ru.ts          translations/qsampler_fr.ts \
72            translations/qsampler_ru.ts
73    
74    
75  unix {  unix {
76    
# Line 80  unix { Line 83  unix {
83                  PREFIX = /usr/local                  PREFIX = /usr/local
84          }          }
85    
86          BINDIR = $$PREFIX/bin          isEmpty(BINDIR) {
87          DATADIR = $$PREFIX/share                  BINDIR = $${PREFIX}/bin
88          LOCALEDIR = $(localedir)          }
89    
90            isEmpty(DATADIR) {
91                    DATADIR = $${PREFIX}/share
92            }
93    
94          DEFINES += DATADIR=\"$$DATADIR\"          #DEFINES += DATADIR=\"$${DATADIR}\"
         DEFINES += LOCALEDIR=\"$$LOCALEDIR\"  
95    
96          # make install          # make install
97          INSTALLS += target desktop icon          INSTALLS += target desktop icon appdata \
98                    icon_scalable mimeinfo mimetypes mimetypes_scalable
99    
100            target.path = $${BINDIR}
101    
102          target.path = $$BINDIR          desktop.path = $${DATADIR}/applications
103            desktop.files += $${NAME}.desktop
104    
105          desktop.path = $$DATADIR/applications          icon.path = $${DATADIR}/icons/hicolor/32x32/apps
106          desktop.files += $${TARGET}.desktop          icon.files += images/$${NAME}.png
107    
108          icon.path = $$DATADIR/icons/hicolor/32x32/apps          icon_scalable.path = $${DATADIR}/icons/hicolor/scalable/apps
109          icon.files += images/$${TARGET}.png          icon_scalable.files += images/$${NAME}.svg
110    
111            appdata.path = $${DATADIR}/metainfo
112            appdata.files += appdata/$${NAME}.appdata.xml
113    
114            mimeinfo.path = $${DATADIR}/mime/packages
115            mimeinfo.files += mimetypes/$${NAME}.xml
116    
117            mimetypes.path = $${DATADIR}/icons/hicolor/32x32/mimetypes
118            mimetypes.files += mimetypes/application-x-$${NAME}-session.png
119    
120            mimetypes_scalable.path = $${DATADIR}/icons/hicolor/scalable/mimetypes
121            mimetypes_scalable.files += mimetypes/application-x-$${NAME}-session.svg
122  }  }
123    
124    QT += widgets
125    
126  win32 {  win32 {
127    
128          CONFIG(debug, debug|release): CONFIG += console          CONFIG(debug, debug|release): CONFIG += console
129          INSTALLS += target          INSTALLS += target
130          target.path = $$PREFIX/bin          target.path = $${PREFIX}/bin
131  }  }
132    
133  macx {  macx {

Legend:
Removed from v.2285  
changed lines
  Added in v.3493

  ViewVC Help
Powered by ViewVC