mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-14 23:31:32 +00:00

Explicitly include it in all "in-tree" plugins. If headers are exported out of tree we will likely explicitly not export this header.
21 lines
403 B
C
21 lines
403 B
C
/*
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "fu-plugin-vfuncs.h"
|
|
#include "fu-hash.h"
|
|
|
|
#include "fu-nitrokey-device.h"
|
|
#include "fu-nitrokey-common.h"
|
|
|
|
void
|
|
fu_plugin_init (FuPlugin *plugin)
|
|
{
|
|
fu_plugin_set_build_hash (plugin, FU_BUILD_HASH);
|
|
fu_plugin_set_device_gtype (plugin, FU_TYPE_NITROKEY_DEVICE);
|
|
}
|