QuasarAppLib/QuasarApp.pro

59 lines
1.4 KiB
Prolog
Raw Normal View History

2018-12-06 21:30:48 +03:00
2018-08-11 18:09:56 +03:00
#
2019-01-26 07:51:58 +03:00
# Copyright (C) 2018-2019 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
DEFINES += QUASARAAPP_LIBRARY
# 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
} else {
DESTDIR = $$PWD/build/debug
}
2018-08-11 18:09:56 +03:00
SOURCES += \
2018-09-29 15:56:04 +03:00
quasarapp.cpp \
params.cpp \
locales.cpp \
2019-04-02 18:12:01 +03:00
settings.cpp \
global.cpp
2018-08-11 18:09:56 +03:00
HEADERS += \
2018-08-17 16:00:26 +03:00
quasarapp.h \
2018-09-29 15:56:04 +03:00
quasarapp_global.h \
params.h \
locales.h \
2019-04-02 18:12:01 +03:00
settings.h \
global.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 14:23:07 +03:00
VERSION = 1.1.6
2018-08-11 18:09:56 +03:00