mfc - CPack doesn't include mfc100.dll -


i thought directive includes necessary runtime libraries in nsis installer generated cpack:

include(installrequiredsystemlibraries) 

but doesn't. when install application installer on pc, complains mfc100.dll missing - isn't included in installer. trying set mfc linking static leads myriad of errors when compiling, isn't option.

can manually figure out path can mfc100.dll , copy install directory in cmake script, included in nsis installer? there other options include it?

the trick tell cpack include them:

set(cmake_install_mfc_libraries on)  include(installrequiredsystemlibraries) 

Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -