diff options
| author | Philippe Mathieu-Daudé | 2020-10-06 14:55:58 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2020-10-12 17:50:20 +0200 |
| commit | 7e6edef3f8cd1176d267c86151c9cf2fc0777781 (patch) | |
| tree | c3a6aaa24059b00f66b3ee17738b80f803e7a82a /migration | |
| parent | chardev: Move the creation of the library to the main meson.build (diff) | |
| download | qemu-7e6edef3f8cd1176d267c86151c9cf2fc0777781.tar.gz qemu-7e6edef3f8cd1176d267c86151c9cf2fc0777781.tar.xz qemu-7e6edef3f8cd1176d267c86151c9cf2fc0777781.zip | |
migration: Move the creation of the library to the main meson.build
Be consistent creating all the libraries in the main meson.build file.
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20201006125602.2311423-6-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'migration')
| -rw-r--r-- | migration/meson.build | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/migration/meson.build b/migration/meson.build index b5b71c8060..980e37865c 100644 --- a/migration/meson.build +++ b/migration/meson.build @@ -8,13 +8,7 @@ migration_files = files( 'qemu-file.c', 'qjson.c', ) - -libmigration = static_library('migration', sources: migration_files + genh, - name_suffix: 'fa', - build_by_default: false) -migration = declare_dependency(link_with: libmigration, - dependencies: [zlib, qom, io]) -softmmu_ss.add(migration) +softmmu_ss.add(migration_files) softmmu_ss.add(files( 'block-dirty-bitmap.c', |
