From 7e2284b581ee159e927cdcf02bbe6b1c69c988ea Mon Sep 17 00:00:00 2001 From: Dirk Van Haerenborgh Date: Fri, 1 Mar 2024 08:58:55 +0100 Subject: [PATCH] fix build --- src/config.rs.in | 2 +- src/meson.build | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/config.rs.in b/src/config.rs.in index 09ed05e..5c09853 100644 --- a/src/config.rs.in +++ b/src/config.rs.in @@ -1,5 +1,5 @@ -use constcat::concat; use crate::application::AppProfile; +use constcat::concat; pub const APP_NAME: &str = "Terms"; pub const APP_ID: &str = @APP_ID@; diff --git a/src/meson.build b/src/meson.build index d7907c8..7536b31 100644 --- a/src/meson.build +++ b/src/meson.build @@ -50,6 +50,8 @@ cargo_build = custom_target( cargo, 'build', cargo_options, '&&', - 'cp', 'src' / rust_target / 'terms', 'src' / rust_target / 'terms-toolbox', '@OUTPUT@', + 'cp', 'src' / rust_target / 'terms', '@OUTPUT0@', + '&&', + 'cp', 'src' / rust_target / 'terms-toolbox', '@OUTPUT1@', ] )