別のフォルダにある .NSI ファイルをインクルードしようとする NSIS スクリプトがあります。
私の問題:スクリプトをコンパイルしようとすると、 compile error が発生します!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