pyapp_msvcrt.nsi 323 B

1234567891011121314
  1. [% extends "pyapp.nsi" %]
  2. [% block install_files %]
  3. [[ super() ]]
  4. ; Install MSVCRT if it's not already on the system
  5. IfFileExists "$SYSDIR\ucrtbase.dll" skip_msvcrt
  6. SetOutPath $INSTDIR\Python
  7. [% for file in ib.msvcrt_files %]
  8. File msvcrt\[[file]]
  9. [% endfor %]
  10. skip_msvcrt:
  11. [% endblock %]