how to set MSBuild VC++ Directories

后端 未结 3 723
甜味超标
甜味超标 2021-01-11 13:45

I have a solution of mixed VB.NET and C++ projects. When using Visual Studio 2005 you can set the \"Tools->Option->Projects and Solutions->VC++ Directories\" to help the com

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-11 14:30

    ...and also you may like to append %INCLUDE% and %LIB% to your variables to avoid overwriting of them

    set INCLUDE=C:\Libraries\LibA\Include;%INCLUDE%
    set LIB=C:\Libraries\LibA\Lib\x86;%LIB%
    

提交回复
热议问题