Skip to content

Commit

Permalink
Edit ISS build file
Browse files Browse the repository at this point in the history
Ensure that the path separating backslash is appropriately included.
  • Loading branch information
IvenBach committed Jun 26, 2019
1 parent 4f387a2 commit dcd0c48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Rubberduck.Deployment/InnoSetup/Rubberduck.Installer.Build.iss
@@ -1,11 +1,11 @@
;The file must be encoded in UTF-8 BOM

#pragma include __INCLUDE__ + ";" + SourcePath + "\Includes\"
#pragma include __INCLUDE__ + ";" + AddBackSlash(SourcePath) + "Includes\"

#define protected
#define BuildDir ExtractFileDir(ExtractFileDir(SourcePath)) + "\bin\"
#define IncludesDir SourcePath + "\Includes\"
#define GraphicsDir SourcePath + "\Graphics\"
#define BuildDir AddBackSlash(ExtractFileDir(ExtractFileDir(SourcePath))) + "\bin\"
#define IncludesDir AddBackSlash(SourcePath) + "Includes\"
#define GraphicsDir AddBackSlash(SourcePath) + "Graphics\"
#define AppName "Rubberduck"
#define AddinDLL "Rubberduck.dll"
#define Tlb32bit "Rubberduck.x32.tlb"
Expand All @@ -16,8 +16,8 @@
#define AppVersion GetFileVersion(BuildDir + "Rubberduck.dll")
#define AppPublisher "Rubberduck"
#define AppURL "http://rubberduckvba.com"
#define License SourcePath + "\Includes\License.rtf"
#define OutputDirectory SourcePath + "Installers\"
#define License AddBackSlash(SourcePath) + "Includes\License.rtf"
#define OutputDirectory AddBackSlash(SourcePath) + "Installers\"
#define AddinProgId "Rubberduck.Extension"
#define AddinCLSID "8D052AD8-BBD2-4C59-8DEC-F697CA1F8A66"

Expand Down

0 comments on commit dcd0c48

Please sign in to comment.