Skip to content

Commit

Permalink
Merge pull request #1 from bbatha/fix/windows-emscripten
Browse files Browse the repository at this point in the history
dont assume .exe is the only executable extension on windows
  • Loading branch information
koute committed May 23, 2017
2 parents 4a51b6c + ddc9d57 commit db007da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ impl BuildConfig {
} if cfg!( target_os = "windows" ) {
match self.build_target {
BuildTarget::Lib( _, Profile::Main ) => matcher!( "\\.(lib|dll)$" ),
_ => matcher!( "\\.exe$" )
_ => {}
}
} if cfg!( target_os = "linux" ) {
match self.build_target {
Expand Down

0 comments on commit db007da

Please sign in to comment.