You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am requesting the inclusion of the following environment variables in msvc-wine, as they are essential for building and using Visual Studio projects on Windows and should be mirrored in the msvc-wine environment. These variables are available on Windows installations of Visual Studio and are required for proper integration with MSVC build tools.
These variables allow developers to ensure compatibility between the msvc-wine environment and standard Visual Studio installations. This is especially critical when working with cross-platform projects developed in Windows environments.
The text was updated successfully, but these errors were encountered:
WindowsSdkDir, VCToolsInstallDir and VCToolsVersion should be already set in the MSBuild wrapper (but the rest are definitely not present)
I didn't need all of those variables above for a modding library that uses a .vcxproj file (but I weirdly did need to set IncludePath and LibraryPath otherwise the Windows headers/libraries couldn't be found)
@TheComputerGuy96 when compiling a driver with C++ stl and using intrinsics there is an issue with clang inbuilt intrinsic and msvc. So we need to know the VCINSTALLDIR and a few more environment variables so that we can reset the included paths.
I am requesting the inclusion of the following environment variables in
msvc-wine
, as they are essential for building and using Visual Studio projects on Windows and should be mirrored in themsvc-wine
environment. These variables are available on Windows installations of Visual Studio and are required for proper integration with MSVC build tools.The variables are:
These variables allow developers to ensure compatibility between the
msvc-wine
environment and standard Visual Studio installations. This is especially critical when working with cross-platform projects developed in Windows environments.The text was updated successfully, but these errors were encountered: