mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-03 18:29:09 +00:00
Rename slint_build::compile_with_output to compile_with_output_path
This commit is contained in:
parent
2564adcf32
commit
b30f91ff41
2 changed files with 3 additions and 3 deletions
|
@ -397,7 +397,7 @@ pub fn compile_with_config(
|
|||
);
|
||||
|
||||
let paths_dependencies =
|
||||
compile_with_output(path, absolute_rust_output_file_path.clone(), config)?;
|
||||
compile_with_output_path(path, absolute_rust_output_file_path.clone(), config)?;
|
||||
|
||||
for path_dependency in paths_dependencies {
|
||||
println!("cargo:rerun-if-changed={}", path_dependency.display());
|
||||
|
@ -427,7 +427,7 @@ pub fn compile_with_config(
|
|||
/// Doesn't print any cargo messages.
|
||||
///
|
||||
/// Returns a list of all input files that were used to generate the output file. (dependencies)
|
||||
pub fn compile_with_output(
|
||||
pub fn compile_with_output_path(
|
||||
input_slint_file_path: impl AsRef<std::path::Path>,
|
||||
output_rust_file_path: impl AsRef<std::path::Path>,
|
||||
config: CompilerConfiguration,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue