forked from Igalia/aura
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaura.pro
More file actions
30 lines (22 loc) · 671 Bytes
/
Copy pathaura.pro
File metadata and controls
30 lines (22 loc) · 671 Bytes
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
QMAKEVERSION = $$[QMAKE_VERSION]
ISQT4 = $$find(QMAKEVERSION, ^[2-9])
isEmpty( ISQT4 ) {
error("Use the qmake include with Qt4.4 or greater, on Debian that is qmake-qt4");
}
TEMPLATE = subdirs
SUBDIRS = src
unix {
#VARIABLES
isEmpty(PREFIX) {
PREFIX = /opt/$${TARGET}
}
DATADIR =$$PREFIX/share
DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
effects.path = $$DATADIR/gnome-video-effects
effects.files = effects/*.effect
icon64.files = data/icon64/aura.png
icon64.path = $$DATADIR/icons/hicolor/64x64/apps
splash.files = data/splash/aura-splash.jpg
splash.path = $$DATADIR/aura
INSTALLS += effects icon64 splash
}