Skip to content

Commit

Permalink
Corrected .lib filenames for ImageMagick 6.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed May 20, 2024
1 parent 0b13f5d commit 33f6720
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Installer/Inno/inc/files-development.isx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@

; Development libraries
Source: "..\..\Output\lib\CORE_RL_Magick++_.lib"; DestDir: "{app}\lib"; Tasks: install_Devel; Flags: ignoreversion
#ifdef MagickVersion7
Source: "..\..\Output\lib\CORE_RL_MagickCore_.lib"; DestDir: "{app}\lib"; Tasks: install_Devel; Flags: ignoreversion
Source: "..\..\Output\lib\CORE_RL_MagickWand_.lib"; DestDir: "{app}\lib"; Tasks: install_Devel; Flags: ignoreversion
#else
Source: "..\..\Output\lib\CORE_RL_magick_.lib"; DestDir: "{app}\lib"; Tasks: install_Devel; Flags: ignoreversion
Source: "..\..\Output\lib\CORE_RL_wand_.lib"; DestDir: "{app}\lib"; Tasks: install_Devel; Flags: ignoreversion
#endif
; Development headers
#ifdef MagickVersion7
Source: "..\..\ImageMagick\MagickCore\*.h"; DestDir: "{app}\include\MagickCore"; Tasks: install_Devel; Flags: ignoreversion
Expand Down

0 comments on commit 33f6720

Please sign in to comment.