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
{{ message }}
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.
At Lib/LibStatic/CMakeLists.txt#L20 there is a hotfix to work around windows quoting issues, which conditional checks "some" vs compilers, which is a bit too restrictive.
IF( MSVC10 OR MSVC11 OR MSVC12 )
For VS2015 preview, which is build chain MSVC14, and any future MSVC's this will require additions to fix this. This causes the build to fail on the incorrect quote escaping.
The majority of the build system is already assuming MSVC chain on windows for definitions and arguments, the same should be assumed for these quoting mechanisms
IF(WIN32 AND NOT UNIX)
instead.
The text was updated successfully, but these errors were encountered:
At Lib/LibStatic/CMakeLists.txt#L20 there is a hotfix to work around windows quoting issues, which conditional checks "some" vs compilers, which is a bit too restrictive.
IF( MSVC10 OR MSVC11 OR MSVC12 )
For VS2015 preview, which is build chain MSVC14, and any future MSVC's this will require additions to fix this. This causes the build to fail on the incorrect quote escaping.
The majority of the build system is already assuming MSVC chain on windows for definitions and arguments, the same should be assumed for these quoting mechanisms
IF(WIN32 AND NOT UNIX)
instead.
The text was updated successfully, but these errors were encountered: