Skip to content

Commit

Permalink
fixed issue with test binding plugin build
Browse files Browse the repository at this point in the history
  • Loading branch information
afinch7 committed May 26, 2019
1 parent 7bfde41 commit bc0a410
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_binding_plugin/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ group("default") {

if (is_linux) {
shared_lib_prefix = "lib"
shared_lib_suffix = ".so"
shared_lib_suffix = "so"
} else if (is_mac) {
shared_lib_prefix = "lib"
shared_lib_suffix = ".dylib"
shared_lib_suffix = "dylib"
} else if (is_win) {
shared_lib_prefix = ""
shared_lib_suffix = ".dll"
shared_lib_suffix = "dll"
} else {
assert(false, "Unsupported platform")
}
Expand Down

0 comments on commit bc0a410

Please sign in to comment.