mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
a509098a79
GCC with C++14 support is already shipped in all supported distributions
80 lines
2.5 KiB
Prolog
80 lines
2.5 KiB
Prolog
# RetroShare main qmake build script
|
|
#
|
|
# Copyright (C) 2004-2019, Retroshare Team <contact@retroshare.cc>
|
|
# Copyright (C) 2016-2019, Gioacchino Mazzurco <gio@eigenlab.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it under
|
|
# the terms of the GNU Lesser General Public License as published by the
|
|
# Free Software Foundation, either version 3 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE.
|
|
# See the GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
# with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
# SPDX-FileCopyrightText: Retroshare Team <contact@retroshare.cc>
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
CONFIG += c++14
|
|
|
|
!include("retroshare.pri"): error("Could not include file retroshare.pri")
|
|
|
|
TEMPLATE = subdirs
|
|
|
|
SUBDIRS += openpgpsdk
|
|
openpgpsdk.file = openpgpsdk/src/openpgpsdk.pro
|
|
|
|
rs_jsonapi:isEmpty(JSONAPI_GENERATOR_EXE) {
|
|
SUBDIRS += jsonapi-generator
|
|
jsonapi-generator.file = jsonapi-generator/src/jsonapi-generator.pro
|
|
libretroshare.depends += jsonapi-generator
|
|
}
|
|
|
|
SUBDIRS += libbitdht
|
|
libbitdht.file = libbitdht/src/libbitdht.pro
|
|
libretroshare.depends += openpgpsdk libbitdht
|
|
|
|
SUBDIRS += libretroshare
|
|
libretroshare.file = libretroshare/src/libretroshare.pro
|
|
|
|
retroshare_gui {
|
|
SUBDIRS += retroshare_gui
|
|
retroshare_gui.file = retroshare-gui/src/retroshare-gui.pro
|
|
retroshare_gui.target = retroshare_gui
|
|
retroshare_gui.depends = libretroshare
|
|
}
|
|
|
|
retroshare_service {
|
|
SUBDIRS += retroshare_service
|
|
retroshare_service.file = retroshare-service/src/retroshare-service.pro
|
|
retroshare_service.depends = libretroshare
|
|
retroshare_service.target = retroshare_service
|
|
}
|
|
|
|
retroshare_plugins {
|
|
SUBDIRS += plugins
|
|
plugins.file = plugins/plugins.pro
|
|
plugins.depends = retroshare_gui
|
|
plugins.target = plugins
|
|
}
|
|
|
|
wikipoos {
|
|
SUBDIRS += pegmarkdown
|
|
pegmarkdown.file = supportlibs/pegmarkdown/pegmarkdown.pro
|
|
retroshare_gui.depends += pegmarkdown
|
|
}
|
|
|
|
tests {
|
|
SUBDIRS += librssimulator
|
|
librssimulator.file = tests/librssimulator/librssimulator.pro
|
|
|
|
SUBDIRS += unittests
|
|
unittests.file = tests/unittests/unittests.pro
|
|
unittests.depends = libretroshare librssimulator
|
|
unittests.target = unittests
|
|
}
|