-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAdaptink.pro
More file actions
30 lines (25 loc) · 952 Bytes
/
Adaptink.pro
File metadata and controls
30 lines (25 loc) · 952 Bytes
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
TEMPLATE = app
TARGET = Adaptink
QT = core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
QMAKE_CXXFLAGS += -std=c++11 -Wdisabled-optimization -Wvector-operation-performance -Winvalid-pch \
-Wunused -Wconversion -Wlogical-op -Wuninitialized -Wsuggest-final-types -Wdouble-promotion \
-Wmissing-include-dirs -Wall -pedantic -Wmain -Wswitch-default -Wunreachable-code -Winline \
-Wfloat-equal -Wundef -Wcast-align -Wredundant-decls -Winit-self -Wshadow -Wnon-virtual-dtor \
-Weffc++ -Wswitch-enum -Wmissing-declarations -Wzero-as-null-pointer-constant -fmessage-length=0 \
-W -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wmissing-noreturn
SOURCES += main.cpp \
adaptink.cpp \
canvas.cpp \
messagehandler.cpp \
scrollarea.cpp \
dcanvas.cpp
HEADERS += \
adaptink.hpp \
canvas.hpp \
messagehandler.hpp \
scrollarea.hpp \
adaptinktool.hpp \
dcanvas.hpp
FORMS += \
adaptink.ui