We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are errors in project properties:
Configuration=Debug: Multi-threaded Debug DLL (/MDd) // not Multi-threaded Debug (/MTd) ! Configuration=StaticDebug: Multi-threaded Debug (/MTd) // not Multi-threaded Debug DLL (/MDd) ! Configuration=Release: Multi-threaded DLL (/MD) // not Multi-threaded (/MT) !
The text was updated successfully, but these errors were encountered:
Seconded. The same error applies to the x64 configurations as well.
Essentially, all "Static" configurations should use the "MT" or "MTd" runtime, while non-static configurations should use the "MD" or "MDd" libraries.
Sorry, something went wrong.
Merge pull request holy-shit#1 from alex85k/master
7e1a977
fix config.h includes
No branches or pull requests
There are errors in project properties:
Configuration=Debug: Multi-threaded Debug DLL (/MDd) // not Multi-threaded Debug (/MTd) !
Configuration=StaticDebug: Multi-threaded Debug (/MTd) // not Multi-threaded Debug DLL (/MDd) !
Configuration=Release: Multi-threaded DLL (/MD) // not Multi-threaded (/MT) !
The text was updated successfully, but these errors were encountered: