QuasarAppLib/QuasarApp.pro

72 lines
1.7 KiB
Prolog
Raw Normal View History

2018-12-06 21:30:48 +03:00
2018-08-11 18:09:56 +03:00
#
2021-01-05 13:04:05 +03:00
# Copyright (C) 2018-2021 QuasarApp.
2018-12-06 21:30:48 +03:00
# Distributed under the lgplv3 software license, see the accompanying
# Everyone is permitted to copy and distribute verbatim copies
# of this license document, but changing it is not allowed.
2018-08-11 18:09:56 +03:00
#
QT -= gui
2019-04-06 23:57:02 +03:00
CONFIG += c++17
2018-08-11 18:09:56 +03:00
2018-08-17 16:00:26 +03:00
TARGET = QuasarApp
2018-08-11 18:09:56 +03:00
TEMPLATE = lib
2020-04-25 17:12:41 +03:00
DEFINES += QUASARAPP_LIBRARY
2018-08-11 18:09:56 +03:00
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has 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
2018-10-24 23:56:56 +03:00
CONFIG(release, debug|release): {
DESTDIR = $$PWD/build/release
DEFINES += RELEASE_BUILD
2018-10-24 23:56:56 +03:00
} else {
DESTDIR = $$PWD/build/debug
}
2018-08-11 18:09:56 +03:00
SOURCES += \
2020-02-18 22:28:17 +03:00
helpdata.cpp \
2021-07-26 13:17:06 +03:00
optiondata.cpp \
2018-09-29 15:56:04 +03:00
quasarapp.cpp \
2019-09-14 17:21:25 +03:00
params.cpp \
locales.cpp \
settings.cpp \
2022-01-21 19:49:58 +03:00
isettings.cpp
2018-08-11 18:09:56 +03:00
HEADERS += \
2020-02-18 22:28:17 +03:00
helpdata.h \
2021-07-26 13:17:06 +03:00
optiondata.h \
2018-08-17 16:00:26 +03:00
quasarapp.h \
2018-09-29 15:56:04 +03:00
quasarapp_global.h \
2019-09-14 17:21:25 +03:00
params.h \
locales.h \
settings.h \
2021-11-06 20:10:49 +03:00
isettings.h \
2022-01-21 19:49:58 +03:00
qaglobalutils.h
2018-08-11 18:09:56 +03:00
DISTFILES += \
2018-12-06 21:30:48 +03:00
QuasarLib.pri \
qmakeEtalons/locales.pri
2018-08-11 18:09:56 +03:00
RESOURCES += \
res.qrc
2019-08-22 17:48:23 +03:00
include(Etalons/qmake/ccache.pri)
2021-07-28 13:29:33 +03:00
VERSION = 1.5.1
2018-08-11 18:09:56 +03:00
2021-02-20 12:29:16 +03:00
# Add empty target for CI system
QMAKE_EXTRA_TARGETS += \
2021-02-20 12:35:01 +03:00
test \
deploy