We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e47c8 commit 160b3d1Copy full SHA for 160b3d1
build.rs
@@ -8,7 +8,6 @@ fn link_nng() {
8
struct Generator(&'static str);
9
const UNIX_MAKEFILES: Generator = Generator("Unix Makefiles");
10
const NINJA: Generator = Generator("Ninja");
11
- const VS2017_WIN64: Generator = Generator("Visual Studio 15 2017 Win64");
12
const VS2017: Generator = Generator("Visual Studio 15 2017");
13
14
// Compile time settings
@@ -17,15 +16,15 @@ fn link_nng() {
17
16
} else if cfg!(feature = "cmake-ninja") {
18
NINJA
19
} else if cfg!(feature = "cmake-vs2017-win64") {
20
- VS2017_WIN64
+ VS2017
21
} else if cfg!(feature = "cmake-vs2017") {
22
VS2017
23
} else {
24
// Default generators
25
if cfg!(target_family = "unix") {
26
UNIX_MAKEFILES
27
28
29
}
30
};
31
0 commit comments