mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
614581f32b
This new module holds and formats capabilities for emulator. If you are about to create a new domain, you may want to know what is the host or hypervisor capable of. To make sure we don't regress on the XML, the formatting is not something left for each driver to implement, rather there's general format function. The domain capabilities is a lockable object (even though the locking is not necessary yet) which uses reference counter. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
## Copyright (C) 2005-2011, 2013-2014 Red Hat, Inc.
|
|
##
|
|
## This library 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 2.1 of the License, or (at your option) any later version.
|
|
##
|
|
## This library 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 library. If not, see
|
|
## <http://www.gnu.org/licenses/>.
|
|
|
|
schemadir = $(pkgdatadir)/schemas
|
|
schema_DATA = \
|
|
basictypes.rng \
|
|
capability.rng \
|
|
domain.rng \
|
|
domaincaps.rng \
|
|
domaincommon.rng \
|
|
domainsnapshot.rng \
|
|
interface.rng \
|
|
network.rng \
|
|
networkcommon.rng \
|
|
nodedev.rng \
|
|
nwfilter.rng \
|
|
secret.rng \
|
|
storagecommon.rng \
|
|
storagepool.rng \
|
|
storagevol.rng
|
|
|
|
EXTRA_DIST = $(schema_DATA)
|