2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-28 08:43:26 +00:00

Fix Visual Studio version used in examples for #368 (#370)

This commit is contained in:
irengrig 2020-02-13 10:26:42 +01:00 committed by GitHub
parent bafdc9d274
commit 8b477ca9cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ cmake_external(
cmake_external(
name = "libhello_win",
cmake_options = ["-G \"Visual Studio 15 2017 Win64\""],
cmake_options = ["-G \"Visual Studio 15 2017\" -A x64"],
generate_crosstool_file = True,
lib_name = "libhello",
lib_source = ":srcs",

View file

@ -18,7 +18,7 @@ cmake_external(
cmake_external(
name = "libhello_win",
cmake_options = ["-G \"Visual Studio 14 2015 Win64\""],
cmake_options = ["-G \"Visual Studio 15 2017\" -A x64"],
generate_crosstool_file = True,
lib_name = "libhello",
lib_source = ":srcs",