Skip to content

Commit 160b3d1

Browse files
committed
Remove VS2017_WIN64 generator as it won't compile.
1 parent 08e47c8 commit 160b3d1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ fn link_nng() {
88
struct Generator(&'static str);
99
const UNIX_MAKEFILES: Generator = Generator("Unix Makefiles");
1010
const NINJA: Generator = Generator("Ninja");
11-
const VS2017_WIN64: Generator = Generator("Visual Studio 15 2017 Win64");
1211
const VS2017: Generator = Generator("Visual Studio 15 2017");
1312

1413
// Compile time settings
@@ -17,15 +16,15 @@ fn link_nng() {
1716
} else if cfg!(feature = "cmake-ninja") {
1817
NINJA
1918
} else if cfg!(feature = "cmake-vs2017-win64") {
20-
VS2017_WIN64
19+
VS2017
2120
} else if cfg!(feature = "cmake-vs2017") {
2221
VS2017
2322
} else {
2423
// Default generators
2524
if cfg!(target_family = "unix") {
2625
UNIX_MAKEFILES
2726
} else {
28-
VS2017_WIN64
27+
VS2017
2928
}
3029
};
3130

0 commit comments

Comments
 (0)