QuasarAppLib/QuasarLib.pri

27 lines
647 B
Plaintext
Raw Normal View History

2018-08-11 18:09:56 +03:00
#
2021-01-05 13:04:05 +03:00
# Copyright (C) 2018-2021 QuasarApp.
2018-08-11 18:09:56 +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.
#
!isEmpty(QUASARAPP_LIB):error("QuasarLib.pri already included")
QUASARAPP_LIB = 1
#DEPENDS
2018-10-24 23:56:56 +03:00
CONFIG(release, debug|release): {
2018-11-11 15:53:49 +03:00
QUASARAPP_LIB_OUTPUT_DIR="$$PWD/build/release"
2018-10-24 23:56:56 +03:00
} else {
2018-11-11 15:53:49 +03:00
QUASARAPP_LIB_OUTPUT_DIR="$$PWD/build/debug"
2018-09-30 17:34:57 +03:00
}
2019-05-17 16:34:30 +03:00
unix:LIBS += -L$$QUASARAPP_LIB_OUTPUT_DIR -lQuasarApp
win32:LIBS += -L$$QUASARAPP_LIB_OUTPUT_DIR -lQuasarApp1
2018-08-11 18:09:56 +03:00
INCLUDEPATH += "$$PWD/"
2018-09-30 16:34:54 +03:00
2019-08-22 17:48:23 +03:00
include(Etalons/qmake/ccache.pri);
2018-09-30 16:34:54 +03:00