Skip to content

Commit

Permalink
rename default cmake build type to Release
Browse files Browse the repository at this point in the history
  • Loading branch information
NoamZeise committed Feb 28, 2023
1 parent 0c4fb75 commit 94e9408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdl2-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fn compile_sdl2(sdl2_build_path: &Path, target_os: &str) -> PathBuf {
if let Ok(profile) = env::var("SDL2_BUILD_PROFILE") {
cfg.profile(&profile);
} else {
cfg.profile("release");
cfg.profile("Release");
}

// Allow specifying custom toolchain specifically for SDL2.
Expand Down

0 comments on commit 94e9408

Please sign in to comment.