How can I add directory with long name files (more 260 symbols) to CMake CPack NSIS win installer?

354 Views Asked by At

I try to add big directory with long paths to CMake CPack NSIS win installer and have error related with long paths

CMake part:

install(
    DIRECTORY src/dir_with_long_file_paths
    DESTINATION dest
    )

cmd line cpack message:

cpack -C Release
CPack: Create package using NSIS
CPack: Install projects
CPack: - Install project: Project
CPack: Create package
CPack Error: Problem running NSIS command: "C:/Program Files (x86)/NSIS/makensis.exe" "C:/GitLabRunner/builds/fe33718a/0/Company/Project/build/_CPack_Packages/win64/NSIS/project.nsi"
Please check C:/GitLabRunner/builds/fe33718a/0/Company/Project/build/_CPack_Packages/win64/NSIS/NSISOutput.log for errors
CPack Error: Problem compressing the directory
CPack Error: Error when generating package: 

NSIS error message:

File: failed opening file "C:/Repo/NameOfInstallProgram/build/_CPack_Packages/win64/NSIS/Project\dest\dir1\dir2\dir3\dir4\dir5\dir6\dir7\dir8\dir9\dir10\file_with_very_long_name_bla_bla_bla.bla"
2

There are 2 best solutions below

1
On

This is probably not an issue with NSIS itself, but a Windows limitation. Have you tried enabling long paths in Powershell?

New-ItemProperty `
    -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
    -Name "LongPathsEnabled" `
    -Value 1 `
    -PropertyType DWORD `
    -Force

Further reading: Maximum Path Length Limitation

0
On

I fixed my issue to add 7z archive to installer and unpack it after installation . For unpack it I used Nsis7z plugin (when use plugins don`t forget about versions (ansi or unicode)).