You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
926 B
51 lines
926 B
13 years ago
|
# release version with compiled-in tdefx classes
|
||
15 years ago
|
# this is used eg. for QT-only apps like Installer
|
||
|
|
||
|
TEMPLATE = lib
|
||
|
|
||
|
unix {
|
||
14 years ago
|
INCLUDEPATH += moc
|
||
|
#force finding libraries in current dir (for installer, etc):
|
||
15 years ago
|
QMAKE_LFLAGS += -Wl,-rpath,.
|
||
13 years ago
|
DEFINES += TDEFX_EXPORT=
|
||
15 years ago
|
}
|
||
|
|
||
|
|
||
11 years ago
|
CONFIG += tdestyle
|
||
15 years ago
|
|
||
|
KW_CONFIG = release
|
||
|
CONFIG -= debug
|
||
|
CONFIG += release
|
||
|
|
||
|
include( $(KDELIBS)/win/common.pro )
|
||
|
|
||
|
|
||
|
LIBS= #DONT BE DEPENDENT ON ANY OTHER LIBS
|
||
|
|
||
|
CONFIG -= debug
|
||
|
|
||
|
# needed to export library classes:
|
||
11 years ago
|
DEFINES += MAKE_TDESTYLE_LIB MAKE_TDEFX_LIB
|
||
15 years ago
|
|
||
|
TARGET = thinkeramik
|
||
|
|
||
|
SOURCES = \
|
||
|
colorutil.cpp \
|
||
|
gradients.cpp \
|
||
|
thinkeramik.cpp \
|
||
|
pixmaploader.cpp
|
||
|
|
||
13 years ago
|
#compile in tdefx
|
||
15 years ago
|
SOURCES += \
|
||
12 years ago
|
../../../tdefx/tdestyle.cpp \
|
||
13 years ago
|
../../../tdefx/kimageeffect.cpp \
|
||
|
../../../tdefx/kpixmapeffect.cpp \
|
||
|
../../../tdefx/kpixmap.cpp
|
||
15 years ago
|
|
||
14 years ago
|
system( moc thinkeramik.h -o moc/thinkeramik.moc )
|
||
12 years ago
|
system( moc ../../../tdefx/tdestyle.h -o moc/tdestyle.moc )
|
||
15 years ago
|
|
||
|
|
||
|
system( bash ./genemb.sh )
|
||
|
|