Skip to content

Commit

Permalink
Merge pull request #225 from tomassedovic/fix-222
Browse files Browse the repository at this point in the history
Remove the '.dll' suffix from windows-gnu target
  • Loading branch information
tomassedovic authored Jun 21, 2016
2 parents e8a9bd0 + cc70502 commit 641bd87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcod_sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ fn main() {
compile_config(config);
assert!(dst.join("libtcod.dll").is_file());

println!("cargo:rustc-link-lib=dylib={}", "SDL.dll");
println!("cargo:rustc-link-lib=dylib={}", "SDL");
println!("cargo:rustc-link-lib=dylib={}", "opengl32");
println!("cargo:rustc-link-search=native={}", sdl_lib_dir.display());
println!("cargo:rustc-link-search=native={}", dst.display());
Expand Down

0 comments on commit 641bd87

Please sign in to comment.