diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-07-16 19:28:54 +0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-08-21 06:30:16 -0400 |
commit | 5582c58f82b2a356cac721af2e973a6fc6880fc1 (patch) | |
tree | f5319c1297a01abad5d14abae925e43e300c180a /qom | |
parent | 5e7fbd25157342b3b983779939419fb328e00f4c (diff) |
meson: convert crypto directory to Meson
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom')
-rw-r--r-- | qom/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qom/meson.build b/qom/meson.build index 7b2cd510f8..cbab9cdfa2 100644 --- a/qom/meson.build +++ b/qom/meson.build @@ -1,4 +1,5 @@ qom_ss = ss.source_set() +qom_ss.add(genh) qom_ss.add(files( 'container.c', 'object.c', @@ -9,7 +10,6 @@ qom_ss.add(files( qom_ss = qom_ss.apply(config_host, strict: false) libqom = static_library('qom', qom_ss.sources() + genh, dependencies: [qom_ss.dependencies()], - link_with: [libqemuutil], name_suffix: 'fa') qom = declare_dependency(link_whole: libqom) |