The build instructions are not that interesting, it's a toss-up between CC0 and BSD-2, but because other CMake bits are BSD-2-Clause, apply that to more CMakeLists. The copyright date isn't all that accurate, but these are just inconsequential files. While here, tidy up and get rid of some useless intermediates.
35 lines
723 B
CMake
35 lines
723 B
CMake
# === This file is part of Calamares - <https://github.com/calamares> ===
|
|
#
|
|
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
calamares_add_plugin( netinstall
|
|
TYPE viewmodule
|
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
|
SOURCES
|
|
Config.cpp
|
|
NetInstallViewStep.cpp
|
|
NetInstallPage.cpp
|
|
PackageTreeItem.cpp
|
|
PackageModel.cpp
|
|
UI
|
|
page_netinst.ui
|
|
LINK_PRIVATE_LIBRARIES
|
|
calamaresui
|
|
Qt5::Network
|
|
yamlcpp
|
|
SHARED_LIB
|
|
)
|
|
|
|
calamares_add_test(
|
|
netinstalltest
|
|
SOURCES
|
|
Tests.cpp
|
|
PackageTreeItem.cpp
|
|
PackageModel.cpp
|
|
LIBRARIES
|
|
Qt5::Gui
|
|
yamlcpp
|
|
)
|
|
|