We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d461bd8 commit 6bf4fc8Copy full SHA for 6bf4fc8
src/project_build.rs
@@ -80,6 +80,9 @@ pub fn build_project(
80
if cfg!(target_os = "windows") && !extra_conf_args.contains(&"-G".to_owned()) {
81
conf_args.extend(["-G", "Ninja"].map(String::from));
82
}
83
+ conf_args.push("-DCMAKE_EXPORT_COMPILE_COMMANDS=1".into());
84
+ // TODO: cli cant install to a mobile device, yet
85
+ conf_args.push("-DGEODE_DONT_INSTALL_MODS=1".into());
86
87
88
_ => unreachable!("invalid platform"),
0 commit comments