Handle property "Ignore Specific Default Libraries"
yrHeTaTeJlb opened this issue · 1 comments
yrHeTaTeJlb commented
For the following *.vcxproj:
<Link>
<IgnoreSpecificDefaultLibraries>libcmt.lib</IgnoreSpecificDefaultLibraries>
</Link>
CMake equivalent is:
set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS_RELEASE "/NODEFAULTLIB:libcmt.lib")
pavelliavonau commented