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.
21 lines
473 B
21 lines
473 B
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
|
|
|
|
TEMPLATE = app
|
|
DESTDIR = $$PWD/../bin
|
|
CONFIG += warn_off
|
|
CONFIG += c++11
|
|
|
|
SOURCES += \
|
|
base/imagecropperlabel.cpp \
|
|
example/imagecropperdemo.cpp \
|
|
example/main.cpp \
|
|
example/mainwindow.cpp
|
|
|
|
HEADERS += \
|
|
base/imagecropperdialog.h \
|
|
base/imagecropperlabel.h \
|
|
example/imagecropperdemo.h \
|
|
example/mainwindow.h
|