我有一个 NSIS 脚本,它试图包含一个位于不同文件夹中的 .NSI 文件。
我的问题:当我去编译我的脚本时,我得到了编译错误!include: could not find: "../Utilities.nsi"
。该文件存在并且位于我指定的正确位置(在父目录中 - 后退一步)。
如何包含位于另一个目录中的文件?我希望它可能。
!include "../Utilities.nsi" # include error: '!include: could not find: "../Utilities.nsi"'
InstallDir "abc"
Name "def"
OutFile "def.exe"
Section
DetailPrint "Hello World"
SectionEnd