We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 632e797 + 78834c7 commit 2617461Copy full SHA for 2617461
1 file changed
how_to/001_basic_usage/nob.c
@@ -50,7 +50,7 @@ int main(int argc, char **argv)
50
nob_cmd_append(&cmd, "cc", "-Wall", "-Wextra", "-o", BUILD_FOLDER"hello", SRC_FOLDER"hello.c");
51
#else
52
// On MSVC
53
- nob_cmd_append(&cmd, "cl", "-I.", "-o", BUILD_FOLDER"hello", SRC_FOLDER"hello.c");
+ nob_cmd_append(&cmd, "cl", "-I.", "/Fe:"BUILD_FOLDER"hello", SRC_FOLDER"hello.c");
54
#endif // _MSC_VER
55
56
// Let's execute the command.
0 commit comments