|
|
@ -292,9 +292,9 @@ impl CargoCmd { |
|
|
|
let config = if self.should_build_3dsx() { |
|
|
|
let config = if self.should_build_3dsx() { |
|
|
|
eprintln!("Getting metadata"); |
|
|
|
eprintln!("Getting metadata"); |
|
|
|
|
|
|
|
|
|
|
|
get_metadata(messages) |
|
|
|
Some(get_metadata(messages)) |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
CTRConfig::default() |
|
|
|
None |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// Run callback only for commands that use it
|
|
|
|
// Run callback only for commands that use it
|
|
|
@ -336,13 +336,15 @@ impl Build { |
|
|
|
/// Callback for `cargo 3ds build`.
|
|
|
|
/// Callback for `cargo 3ds build`.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// This callback handles building the application as a `.3dsx` file.
|
|
|
|
/// This callback handles building the application as a `.3dsx` file.
|
|
|
|
fn callback(&self, config: &CTRConfig, verbose: bool) { |
|
|
|
fn callback(&self, config: &Option<CTRConfig>, verbose: bool) { |
|
|
|
|
|
|
|
if let Some(config) = config { |
|
|
|
eprintln!("Building smdh: {}", config.path_smdh().display()); |
|
|
|
eprintln!("Building smdh: {}", config.path_smdh().display()); |
|
|
|
build_smdh(config, verbose); |
|
|
|
build_smdh(config, verbose); |
|
|
|
|
|
|
|
|
|
|
|
eprintln!("Building 3dsx: {}", config.path_3dsx().display()); |
|
|
|
eprintln!("Building 3dsx: {}", config.path_3dsx().display()); |
|
|
|
build_3dsx(config, verbose); |
|
|
|
build_3dsx(config, verbose); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
impl Run { |
|
|
|
impl Run { |
|
|
@ -390,12 +392,14 @@ impl Run { |
|
|
|
/// Callback for `cargo 3ds run`.
|
|
|
|
/// Callback for `cargo 3ds run`.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// This callback handles launching the application via `3dslink`.
|
|
|
|
/// This callback handles launching the application via `3dslink`.
|
|
|
|
fn callback(&self, config: &CTRConfig, verbose: bool) { |
|
|
|
fn callback(&self, config: &Option<CTRConfig>, verbose: bool) { |
|
|
|
// Run the normal "build" callback
|
|
|
|
// Run the normal "build" callback
|
|
|
|
self.build_args.callback(config, verbose); |
|
|
|
self.build_args.callback(config, verbose); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if let Some(cfg) = config { |
|
|
|
eprintln!("Running 3dslink"); |
|
|
|
eprintln!("Running 3dslink"); |
|
|
|
link(config, self, verbose); |
|
|
|
link(cfg, self, verbose); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -403,13 +407,13 @@ impl Test { |
|
|
|
/// Callback for `cargo 3ds test`.
|
|
|
|
/// Callback for `cargo 3ds test`.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// This callback handles launching the application via `3dslink`.
|
|
|
|
/// This callback handles launching the application via `3dslink`.
|
|
|
|
fn callback(&self, config: &CTRConfig, verbose: bool) { |
|
|
|
fn callback(&self, config: &Option<CTRConfig>, verbose: bool) { |
|
|
|
if self.no_run { |
|
|
|
if self.no_run { |
|
|
|
// If the tests don't have to run, use the "build" callback
|
|
|
|
// If the tests don't have to run, use the "build" callback
|
|
|
|
self.run_args.build_args.callback(config, verbose) |
|
|
|
self.run_args.build_args.callback(config, verbose); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// If the tests have to run, use the "run" callback
|
|
|
|
// If the tests have to run, use the "run" callback
|
|
|
|
self.run_args.callback(config, verbose) |
|
|
|
self.run_args.callback(config, verbose); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|