msbuild invoke compilers to compile multiple source files in one command as default. How to disable it? #7482
Unanswered
YanguanWang
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When building multiple files in a task, msbuild always invoke compiler to build like below:
cl a.cpp b.cpp c.cpp
However, I want to compiler to build like this
cl a.cpp
cl b.cpp
cl c.cpp
How could i do for this?
Beta Was this translation helpful? Give feedback.
All reactions