blob: 41181415fd5c00966210388352ac99f62039786b (
plain)
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
|
include( ../../common.pro )
TARGET = thinkeramik$$KDEBUG
unix {
INCLUDEPATH += moc
#force finding libraries in current dir (for installer, etc):
QMAKE_LFLAGS += -Wl,-rpath,.
}
system( bash kmoc )
SOURCES = \
colorutil.cpp \
gradients.cpp \
thinkeramik.cpp \
pixmaploader.cpp
contains( KW_CONFIG, release ) {
system( bash ./genemb.sh _rel )
}
!contains( KW_CONFIG, release ) {
system( bash ./genemb.sh )
}
|