90 lines
2.6 KiB
Prolog
90 lines
2.6 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-04-19T15:47:09
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = KShare
|
|
TEMPLATE = app
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which as been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
cropeditor/cropeditor.cpp \
|
|
cropeditor/cropview.cpp \
|
|
cropeditor/cropscene.cpp \
|
|
uploaders/uploadersingleton.cpp \
|
|
screenshotter.cpp \
|
|
screenshotutil.cpp \
|
|
uploaders/default/imguruploader.cpp \
|
|
io/ioutils.cpp \
|
|
settings.cpp \
|
|
uploaders/default/clipboarduploader.cpp \
|
|
formatter.cpp \
|
|
uploaders/customuploader.cpp \
|
|
notifications.cpp \
|
|
hotkeying.cpp \
|
|
cropeditor/drawing/dotitem.cpp \
|
|
cropeditor/settings/brushpenselection.cpp \
|
|
cropeditor/drawing/bluritem.cpp \
|
|
cropeditor/settings/blurdialog.cpp \
|
|
cropeditor/drawing/pathitem.cpp \
|
|
cropeditor/drawing/lineitem.cpp
|
|
|
|
HEADERS += mainwindow.hpp \
|
|
cropeditor/cropeditor.hpp \
|
|
cropeditor/cropview.hpp \
|
|
cropeditor/cropscene.hpp \
|
|
uploaders/uploader.hpp \
|
|
uploaders/uploadersingleton.hpp \
|
|
screenshotter.hpp \
|
|
screenshotutil.hpp \
|
|
uploaders/default/imguruploader.hpp \
|
|
io/ioutils.hpp \
|
|
settings.hpp \
|
|
uploaders/default/clipboarduploader.hpp \
|
|
formatter.hpp \
|
|
uploaders/customuploader.hpp \
|
|
notifications.hpp \
|
|
hotkeying.hpp \
|
|
cropeditor/drawing/drawitem.hpp \
|
|
cropeditor/drawing/dotitem.hpp \
|
|
cropeditor/settings/brushpenselection.hpp \
|
|
cropeditor/drawing/bluritem.hpp \
|
|
cropeditor/settings/blurdialog.hpp \
|
|
cropeditor/drawing/pathitem.hpp \
|
|
cropeditor/drawing/lineitem.hpp
|
|
|
|
FORMS += mainwindow.ui \
|
|
cropeditor/settings/brushpenselection.ui \
|
|
cropeditor/settings/blurdialog.ui
|
|
|
|
DISTFILES += \
|
|
README.md \
|
|
LICENSE
|
|
|
|
RESOURCES += \
|
|
icon.qrc
|
|
|
|
ICON = icons/icon.ico
|
|
|
|
# Enable debug symbols
|
|
QMAKE_CFLAGS_DEBUG += -g
|
|
|
|
include(QHotkey/qhotkey.pri)
|