-
Notifications
You must be signed in to change notification settings - Fork 0
/
QBlpPlugin.pro
54 lines (45 loc) · 1.14 KB
/
QBlpPlugin.pro
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#-------------------------------------------------
#
# Project created by QtCreator 2020-06-17T19:32:15
#
#-------------------------------------------------
QT += core gui
CONFIG += plugin
CONFIG(debug, debug|release) {
TARGET = qblpd
}
CONFIG(release, debug|release) {
TARGET = qblp
}
TEMPLATE = lib
SOURCES += qblpplugin.cpp \
qblphandler.cpp \
squishlib/alpha.cpp \
squishlib/clusterfit.cpp \
squishlib/colourblock.cpp \
squishlib/colourfit.cpp \
squishlib/colourset.cpp \
squishlib/maths.cpp \
squishlib/rangefit.cpp \
squishlib/singlecolourfit.cpp \
squishlib/squish.cpp
HEADERS += qblpplugin.h \
qblphandler.h \
squishlib/alpha.h \
squishlib/clusterfit.h \
squishlib/colourblock.h \
squishlib/colourfit.h \
squishlib/colourset.h \
squishlib/maths.h \
squishlib/rangefit.h \
squishlib/simd.h \
squishlib/simd_float.h \
squishlib/simd_sse.h \
squishlib/simd_ve.h \
squishlib/singlecolourfit.h \
squishlib/squish.h
OTHER_FILES += \
QBlpPlugin.json \
INCLUDEPATH += squishlib/
target.path = $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target