Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cargo_wrapper.py')
-rw-r--r--cargo_wrapper.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/cargo_wrapper.py b/cargo_wrapper.py
index d72211025..c8b143094 100644
--- a/cargo_wrapper.py
+++ b/cargo_wrapper.py
@@ -29,8 +29,9 @@ env['PKG_CONFIG_PATH'] = ':'.join(pkg_config_path)
if command == 'build':
# cargo build
ext = sys.argv[7]
- cargo_cmd = ['cargo', 'build', '--manifest-path',
- os.path.join(meson_current_source_dir, 'Cargo.toml'),
+ cargo_cmd = ['cargo', 'build', '--all-targets',
+ '--manifest-path', os.path.join(
+ meson_current_source_dir, 'Cargo.toml'),
'--workspace']
if target == 'release':
cargo_cmd.append('--release')