-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathimageviewer.pro
55 lines (49 loc) · 1.11 KB
/
imageviewer.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
55
MOC_DIR = ./moc
OBJECTS_DIR = ./obj
QT+= gui declarative
TARGET = image_abstraction
INCLUDEPATH += src/flst \
src/synth \
src/mw3 \
src/segment \
src/kdtree \
src/kdtree/ann/include
DEPENDPATH += src/flst \
src/synth \
src/segment \
src/mw3 \
src/kdtree \
src/kdtree/ann/include
HEADERS = ImageWidget.h \
ImageLabel.h \
ImageViewer.h \
OptionWidget.h \
src/flst/*.h \
src/iio/*.h \
src/mw3/*.h \
src/synth/*.h \
src/segment/*.h \
src/kdtree/*.h \
src/kdtree/ann/include/ANN/*.h \
AbstractionProcess.h \
Segmentation.h \
TreeOfShapes.h
SOURCES = main.cpp \
ImageWidget.cpp \
ImageLabel.cpp \
ImageViewer.cpp \
OptionWidget.cpp \
src/flst/*.c \
src/mw3/*.c \
src/synth/*.c \
src/kdtree/ann/src/*.cpp \
src/segment/*.cpp \
AbstractionProcess.cpp \
Segmentation.cpp \
TreeOfShapes.cpp
LIBS = -L/usr/lib/x86_64-linux-gnu/
QMAKE_CFLAGS += -std=c99
QMAKE_CXXFLAGS_RELEASE = -std=c++0x
QMAKE_CXXFLAGS_RELEASE += -Ofast
QMAKE_CXXFLAGS_DEBUG = -std=c++0x
QMAKE_CXXFLAGS_DEBUG += -Ofast