18 lines
391 B
CMake
18 lines
391 B
CMake
# SPDX-FileCopyrightText: no
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
#
|
|
if( NOT Calamares_WITH_QML )
|
|
calamares_skip_module( "freebsddisk (QML is not supported in this build)" )
|
|
return()
|
|
endif()
|
|
|
|
calamares_add_plugin( freebsddisk
|
|
TYPE viewmodule
|
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
|
SOURCES
|
|
FreeBSDDiskViewStep.cpp
|
|
RESOURCES
|
|
freebsddisk.qrc
|
|
SHARED_LIB
|
|
)
|