I'm writing a VS integration for a custom C++ toolchain (.props, .targets, .xml files). Where can I specify the path to the compiler executable? If I set the value of <ExecutablePath>
then it will search for cl.exe
in that folder, but what if my program is not called cl.exe
? Is there any way to handle this?
Asked
Active
Viewed 52 times
0

Zachary Turner
- 738
- 4
- 24
-
Have you seen https://stackoverflow.com/questions/45835043/how-to-override-compile-command-of-visual-studio-2017-community and https://stackoverflow.com/questions/30761708/msbuild-set-path-to-cl ? – stijn Jan 27 '18 at 10:10
-
Thanks, that looks very promising. I'll give it a try! – Zachary Turner Jan 29 '18 at 18:10