PDF4QT/Pdf4QtViewerPlugins/OutputPreviewPlugin/OutputPreviewPlugin.pro

58 lines
1.4 KiB
Prolog
Raw Normal View History

2021-01-30 18:54:38 +01:00
# Copyright (C) 2021 Jakub Melka
#
# This file is part of Pdf4Qt.
#
# Pdf4Qt is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pdf4Qt 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pdf4Qt. If not, see <https://www.gnu.org/licenses/>.
TEMPLATE = lib
DEFINES += OUTPUTPREVIEWPLUGIN_LIBRARY
QT += gui widgets
LIBS += -L$$OUT_PWD/../..
LIBS += -lPdf4QtLib
QMAKE_CXXFLAGS += /std:c++latest /utf-8
INCLUDEPATH += $$PWD/../../Pdf4QtLib/Sources
DESTDIR = $$OUT_PWD/../../pdfplugins
CONFIG += c++11
SOURCES += \
2021-04-20 19:33:54 +02:00
inkcoveragedialog.cpp \
2021-01-30 18:54:38 +01:00
outputpreviewdialog.cpp \
2021-03-27 16:06:07 +01:00
outputpreviewplugin.cpp \
outputpreviewwidget.cpp
2021-01-30 18:54:38 +01:00
HEADERS += \
2021-04-20 19:33:54 +02:00
inkcoveragedialog.h \
2021-01-30 18:54:38 +01:00
outputpreviewdialog.h \
2021-03-27 16:06:07 +01:00
outputpreviewplugin.h \
outputpreviewwidget.h
2021-01-30 18:54:38 +01:00
CONFIG += force_debug_info
DISTFILES += \
OutputPreviewPlugin.json
RESOURCES += \
icons.qrc
FORMS += \
2021-04-20 19:33:54 +02:00
inkcoveragedialog.ui \
2021-01-30 18:54:38 +01:00
outputpreviewdialog.ui