forked from arskom/img_han
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimg_han.pro
53 lines (43 loc) · 1.65 KB
/
img_han.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
#
# This file is part of Arskom EasyCompress Image Compression Tool
# source code package.
#
# Copyright (C) 2016 Arskom Ltd. (http://arskom.com.tr)
# Please contact Burak ARSLAN <[email protected]>
# Arda OZDEMIR <[email protected]>
# for more information.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
#-------------------------------------------------
#
# Project created by QtCreator 2016-06-20T09:06:17
#
#-------------------------------------------------
QT += core gui widgets
lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5")
# Because of: QAbstractScrollArea::sizeAdjustPolicy
# cf. http://doc.qt.io/qt-5/qabstractscrollarea.html#sizeAdjustPolicy-prop
lessThan(QT_MINOR_VERSION, 2): error("requires Qt 5.2")
TARGET = img_han
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
wheeledgraphicsview.cpp
HEADERS += mainwindow.h \
wheeledgraphicsview.h
FORMS += mainwindow.ui
QMAKE_CXXFLAGS += -std=c++11
RESOURCES += resource/resource.qrc