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 befb92c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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__ + ";" + SourcePath + "Includes\"

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

0 comments on commit befb92c

Please sign in to comment.