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
Anyway to use /MD in Cinder?
/MD
I see
if( MSVC ) # Override the default /MD with /MT foreach( flag_var CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO ) if( ${flag_var} MATCHES "/MD" ) string( REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}" ) endif() endforeach() endif()
Can we add an MSVC_MD switch?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Anyway to use
/MD
in Cinder?I see
Can we add an MSVC_MD switch?
The text was updated successfully, but these errors were encountered: