blob: 20c2895490cc7cac677200e6f409809823614f71 (
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 += tqmoc
#force tqfinding libraries in current dir (for installer, etc):
QMAKE_LFLAGS += -Wl,-rpath,.
}
system( bash ktqmoc )
SOURCES = \
colorutil.cpp \
gradients.cpp \
thinkeramik.cpp \
pixmaploader.cpp
tqcontains( KW_CONFIG, release ) {
system( bash ./genemb.sh _rel )
}
!tqcontains( KW_CONFIG, release ) {
system( bash ./genemb.sh )
}
|