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
Right now we compile our source files with /MDd in the Debug build configuration on Windows. This causes linker warnings in Debug build if the external dependencies are compiled with /MD (because we build them in the Release build configuration).
We should consider setting the CMAKE_MSVC_RUNTIME_LIBRARY variable to use /MD in all build configurations.
The text was updated successfully, but these errors were encountered:
Right now we compile our source files with
/MDd
in theDebug
build configuration on Windows. This causes linker warnings inDebug
build if the external dependencies are compiled with/MD
(because we build them in theRelease
build configuration).We should consider setting the
CMAKE_MSVC_RUNTIME_LIBRARY
variable to use/MD
in all build configurations.The text was updated successfully, but these errors were encountered: