calamares/src/modules/dummycpp/module.desc
Adriaan de Groot 1b23520f20 REUSE: (CC0-1.0) module descriptors and configuration files
In spite of there being considerable documentation sometimes in the
config file, we go with CC0 because we don't want the notion of
'derived work' of a config file.

The example `settings.conf` is also CC0. Add some docs to
it while we're at it.
2020-08-26 02:22:49 +02:00

23 lines
872 B
Plaintext

# SPDX-FileCopyrightText: no
# SPDX-License-Identifier: CC0-1.0
# Module metadata file for dummycpp job
#
# The metadata for C++ (qtplugin) plugins is almost never interesting:
# the CMakeLists.txt should be using calamares_add_plugin() which will
# generate the metadata file during the build. Only C++ plugins that
# have strange settings should have a module.desc (non-C++ plugins,
# on the other hand, must have one, since they don't have CMakeLists.txt).
#
# Syntax is YAML 1.2
#
# All four keys are mandatory. For C++ (qtplugin) modules, the interface
# value must be "qtplugin"; type is one of "job" or "view"; the name
# is the machine-identifier for the module and the load value should
# be the filename of the library that contains the implementation.
#
---
type: "job"
name: "dummycpp"
interface: "qtplugin"
load: "libcalamares_job_dummycpp.so"