QuasarAppLib/QuasarLib.pri

24 lines
545 B
Plaintext
Raw Normal View History

2018-08-11 18:09:56 +03:00
#
# Copyright (C) 2018 QuasarApp.
# 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
}
2018-09-30 16:34:54 +03:00
2018-11-11 15:53:49 +03:00
LIBS += -L$$QUASARAPP_LIB_OUTPUT_DIR -lQuasarApp
2018-08-11 18:09:56 +03:00
INCLUDEPATH += "$$PWD/"
2018-09-30 16:34:54 +03:00