+## Starting in MSVC 2005, manifest files are required. This reduces the obnoxiousness of this feature.
+ POST_SO_BUILD_STEP = @([ -e $<.manifest ] && \
+ ( echo Embedding manifest into $< && mt.exe -nologo -manifest $<.manifest -outputresource:"$<;2" && rm -rf $<.manifest )) \
+ || true
+ POST_BUILD_STEP = @([ -e $@.manifest ] && \
+ ( echo Embedding manifest into $@ && mt.exe -nologo -manifest $@.manifest -outputresource:"$@;1" && rm -rf $@.manifest )) \
+ || true
+