diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 18:37:12 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 18:37:12 -0400 |
commit | be1f2c2bce1ba5e81ce14e9cb82c0d2fb251b60e (patch) | |
tree | 00d1741993852f4732dbcaaab208d71c17bd313e /nsis/installer.nsi.in | |
parent | 49d7691f6fb374ae2f06f46ead21d53c14bc64b9 (diff) |
Option to install lua-filesystem in nsis installer
Diffstat (limited to 'nsis/installer.nsi.in')
-rw-r--r-- | nsis/installer.nsi.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/nsis/installer.nsi.in b/nsis/installer.nsi.in index 066d4a9..e526ed7 100644 --- a/nsis/installer.nsi.in +++ b/nsis/installer.nsi.in @@ -69,7 +69,9 @@ Var StartMenuFolder ;------------------------------------------------------------------------------- ; Installer Sections -Section "My Application" MyApp +Section "Core" MyApp + ; Don't allow this section to be deselected + SectionIn RO SetOutPath $INSTDIR File "..\src\@PACKAGE_NAME@.exe" File "deps\*.*" @@ -82,6 +84,11 @@ Section "My Application" MyApp WriteUninstaller "$INSTDIR\Uninstall.exe" SectionEnd +Section "lua-filesystem" lfs + SetOutPath $INSTDIR + File "deps_luarocks\lfs.dll" +SectionEnd + Function installDesktopShortcut CreateShortCut "$Desktop\${PRODUCT_NAME}.lnk" "$INSTDIR\@PACKAGE_NAME@.exe" FunctionEnd |