19 lines
376 B
CMake
19 lines
376 B
CMake
|
# === This file is part of Calamares - <https://calamares.io> ===
|
||
|
#
|
||
|
# SPDX-FileCopyrightText: 2021 Adriaan de Groot <groot@kde.org>
|
||
|
# SPDX-License-Identifier: BSD-2-Clause
|
||
|
#
|
||
|
calamares_add_plugin( umount
|
||
|
TYPE job
|
||
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
||
|
SOURCES
|
||
|
UmountJob.cpp
|
||
|
SHARED_LIB
|
||
|
)
|
||
|
|
||
|
calamares_add_test(
|
||
|
umounttest
|
||
|
SOURCES
|
||
|
Tests.cpp
|
||
|
)
|