fwupd/plugins/usb/meson.build
Richard Hughes 57746cb839 Add the Meson build system as an alternate to autotools
Automake and autoconf are impossible to fully understand and Meson now provides
everything we need for a much smaller, faster, and more understandable build.

See http://mesonbuild.com/ for more information.
2017-04-12 16:35:18 +01:00

19 lines
367 B
Meson

cargs = ['-DG_LOG_DOMAIN="FuPluginUsb"']
shared_module('fu_plugin_usb',
sources : [
'fu-plugin-usb.c',
],
include_directories : [
include_directories('../..'),
include_directories('../../src'),
include_directories('../../libfwupd'),
],
install : true,
install_dir: plugin_dir,
c_args : cargs,
dependencies : [
plugin_deps,
],
)