PDF4QT/PdfTool/PdfTool.pro

102 lines
3.1 KiB
Prolog
Raw Normal View History

2021-04-30 20:12:10 +02:00
# Copyright (C) 2020-2021 Jakub Melka
2020-09-25 18:08:39 +02:00
#
2021-08-10 19:22:56 +02:00
# This file is part of PDF4QT.
2020-09-25 18:08:39 +02:00
#
2021-08-10 19:22:56 +02:00
# PDF4QT is free software: you can redistribute it and/or modify
2020-09-25 18:08:39 +02:00
# 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
2021-04-30 20:12:10 +02:00
# with the written consent of the copyright owner, any later version.
2020-09-25 18:08:39 +02:00
#
2021-08-10 19:22:56 +02:00
# PDF4QT is distributed in the hope that it will be useful,
2020-09-25 18:08:39 +02:00
# 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
2021-08-10 19:22:56 +02:00
# along with PDF4QT. If not, see <https://www.gnu.org/licenses/>.
2020-09-25 18:08:39 +02:00
CONFIG += c++11 console
CONFIG -= app_bundle
TARGET = PdfTool
VERSION = 1.0.0
QMAKE_TARGET_DESCRIPTION = "PDF tool for Qt"
2021-04-30 20:12:10 +02:00
QMAKE_TARGET_COPYRIGHT = "(c) Jakub Melka 2018-2021"
2020-09-25 18:08:39 +02:00
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
QMAKE_CXXFLAGS += /std:c++latest /utf-8
2020-12-20 19:03:58 +01:00
INCLUDEPATH += $$PWD/../PDF4QtLib/Sources
2020-09-25 18:08:39 +02:00
DESTDIR = $$OUT_PWD/..
LIBS += -L$$OUT_PWD/..
2020-12-20 19:03:58 +01:00
LIBS += -lPDF4QtLib
2020-09-25 18:08:39 +02:00
SOURCES += \
main.cpp \
2020-09-26 14:52:48 +02:00
pdfoutputformatter.cpp \
pdftoolabstractapplication.cpp \
2020-10-02 15:14:45 +02:00
pdftoolattachments.cpp \
2020-10-18 17:49:16 +02:00
pdftoolaudiobook.cpp \
2020-11-02 19:24:27 +01:00
pdftoolcertstore.cpp \
pdftoolcolorprofiles.cpp \
2021-05-11 18:46:33 +02:00
pdftooldecrypt.cpp \
2021-06-01 16:09:00 +02:00
pdftoolencrypt.cpp \
2020-10-29 19:17:24 +01:00
pdftoolfetchimages.cpp \
2020-10-11 18:21:20 +02:00
pdftoolfetchtext.cpp \
2020-10-04 16:56:55 +02:00
pdftoolinfo.cpp \
2020-10-24 14:39:09 +02:00
pdftoolinfofonts.cpp \
pdftoolinfoinks.cpp \
2020-10-05 19:50:04 +02:00
pdftoolinfojavascript.cpp \
2020-10-09 17:08:56 +02:00
pdftoolinfometadata.cpp \
2020-10-07 18:57:34 +02:00
pdftoolinfonameddestinations.cpp \
2020-10-08 18:47:04 +02:00
pdftoolinfopageboxes.cpp \
2020-10-10 14:45:14 +02:00
pdftoolinfostructuretree.cpp \
pdftoolinkcoverage.cpp \
2020-11-01 18:50:21 +01:00
pdftooloptimize.cpp \
2020-10-25 18:55:25 +01:00
pdftoolrender.cpp \
2020-10-31 14:23:13 +01:00
pdftoolseparate.cpp \
2021-06-25 19:22:08 +02:00
pdftoolstatistics.cpp \
2020-10-31 17:11:51 +01:00
pdftoolunite.cpp \
pdftoolverifysignatures.cpp \
pdftoolxml.cpp
2020-09-25 18:08:39 +02:00
application.files = $$DESTDIR/PdfTool.exe
application.path = $$DESTDIR/install
2021-08-08 16:52:10 +02:00
application.CONFIG += no_check_exist
2020-09-25 18:08:39 +02:00
INSTALLS += application
HEADERS += \
2020-09-26 14:52:48 +02:00
pdfoutputformatter.h \
pdftoolabstractapplication.h \
2020-10-02 15:14:45 +02:00
pdftoolattachments.h \
2020-10-18 17:49:16 +02:00
pdftoolaudiobook.h \
2020-11-02 19:24:27 +01:00
pdftoolcertstore.h \
pdftoolcolorprofiles.h \
2021-05-11 18:46:33 +02:00
pdftooldecrypt.h \
2021-06-01 16:09:00 +02:00
pdftoolencrypt.h \
2020-10-29 19:17:24 +01:00
pdftoolfetchimages.h \
2020-10-11 18:21:20 +02:00
pdftoolfetchtext.h \
2020-10-04 16:56:55 +02:00
pdftoolinfo.h \
2020-10-24 14:39:09 +02:00
pdftoolinfofonts.h \
pdftoolinfoinks.h \
2020-10-05 19:50:04 +02:00
pdftoolinfojavascript.h \
2020-10-09 17:08:56 +02:00
pdftoolinfometadata.h \
2020-10-07 18:57:34 +02:00
pdftoolinfonameddestinations.h \
2020-10-08 18:47:04 +02:00
pdftoolinfopageboxes.h \
2020-10-10 14:45:14 +02:00
pdftoolinfostructuretree.h \
pdftoolinkcoverage.h \
2020-11-01 18:50:21 +01:00
pdftooloptimize.h \
2020-10-25 18:55:25 +01:00
pdftoolrender.h \
2020-10-31 14:23:13 +01:00
pdftoolseparate.h \
2021-06-25 19:22:08 +02:00
pdftoolstatistics.h \
2020-10-31 17:11:51 +01:00
pdftoolunite.h \
pdftoolverifysignatures.h \
pdftoolxml.h