mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 17:54:42 +00:00
32 lines
809 B
Plaintext
32 lines
809 B
Plaintext
#
|
|
# Copyright (C) 2018 - 2019 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(SERVER_LIB):error("Client.pri already included")
|
|
CLIENT_LIB = 1
|
|
|
|
#DEPENDS
|
|
CONFIG(release, debug|release): {
|
|
CLIENT_LIB_OUTPUT_DIR="$$PWD/build/release"
|
|
} else {
|
|
CLIENT_LIB_OUTPUT_DIR="$$PWD/build/debug"
|
|
}
|
|
|
|
LIBS += -L$$CLIENT_LIB_OUTPUT_DIR -lClient
|
|
|
|
include($$PWD/../../QuasarAppLib/QuasarLib.pri)
|
|
include($$PWD/../../SnakeUtils/SnakeUtils.pri)
|
|
include($$PWD/../../SnakeServer/ClientProtocol/ClientProtocol.pri)
|
|
|
|
INCLUDEPATH += "$$PWD"
|
|
INCLUDEPATH += "$$PWD/front-end"
|
|
INCLUDEPATH += "$$PWD/back-end"
|
|
#INCLUDEPATH += "$$PWD/back-end/ProfileViewItems"
|
|
|
|
|
|
|
|
|