Skip to content

Commit

Permalink
Updated for Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben2020 committed May 2, 2015
1 parent bc33b6b commit 43b937d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -20,6 +20,8 @@
build/
build32/
build64/
output/
Output/
bin/
html/

Expand Down
35 changes: 17 additions & 18 deletions windows-install/codequery.iss
@@ -1,27 +1,26 @@
[Files]
Source: "C:\workspace\codequery\build\cqmakedb.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "C:\workspace\codequery\build\cqsearch.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "C:\workspace\codequery\build\codequery.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "C:\workspace\codequery\windows-install\README.txt"; DestDir: "{app}"; Flags: overwritereadonly isreadme
Source: "C:\workspace\codequery\windows-install\LICENSE.txt"; DestDir: "{app}"; Flags: overwritereadonly
Source: "C:\workspace\codequery\windows-install\HOWTO-WINDOWS.txt"; DestDir: "{app}"; Flags: overwritereadonly
Source: "C:\workspace\codequery\windows-install\cscope.exe"; DestDir: "{app}"; Flags: 32bit
Source: "C:\workspace\codequery\windows-install\ctags.exe"; DestDir: "{app}"; Flags: 32bit
Source: "C:\MinGW\bin\libgcc_s_dw2-1.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\MinGW\bin\libstdc++-6.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\MinGW\bin\mingwm10.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\MinGW\bin\sqlite3.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\Qt\4.8.5\bin\QtCore4.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\Qt\4.8.5\bin\QtGui4.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\Qt\4.8.5\bin\QtXml4.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "C:\Qt\4.8.5\bin\qscintilla2.dll"; DestDir: "{sys}"; Flags: 32bit sharedfile
Source: "\workspace\codequery\build\cqmakedb.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\workspace\codequery\build\cqsearch.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\workspace\codequery\build\codequery.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\workspace\codequery\windows-install\README.txt"; DestDir: "{app}"; Flags: overwritereadonly isreadme
Source: "\workspace\codequery\windows-install\LICENSE.txt"; DestDir: "{app}"; Flags: overwritereadonly
Source: "\workspace\codequery\windows-install\HOWTO-WINDOWS.txt"; DestDir: "{app}"; Flags: overwritereadonly
Source: "\workspace\codequery\windows-install\cscope.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\workspace\codequery\windows-install\ctags.exe"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\Qt\4.8.6\bin\qscintilla2.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\Qt\4.8.6\bin\QtCore4.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\Qt\4.8.6\bin\QtGui4.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\Qt\4.8.6\bin\QtXml4.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\mingw32\bin\sqlite3.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\mingw32\bin\libgcc_s_dw2-1.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\mingw32\bin\libstdc++-6.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly
Source: "\mingw32\bin\libwinpthread-1.dll"; DestDir: "{app}"; Flags: 32bit overwritereadonly

[Icons]
Name: "{group}\CodeQuery"; Filename: "{app}\codequery.exe"; WorkingDir: "{app}"; IconFilename: "{app}\codequery.exe"
Name: "{group}\README"; Filename: "{app}\README.txt"; WorkingDir: "{app}"
Name: "{group}\LICENSE"; Filename: "{app}\LICENSE.txt"; WorkingDir: "{app}"
Name: "{group}\How to Use CodeQuery"; Filename: "{app}\HOWTO-WINDOWS.txt"; WorkingDir: "{app}"
Name: "{group}\Updates Notification"; Filename: "{app}\updatesnoti.htm"; WorkingDir: "{app}"
Name: "{group}\Uninstall"; Filename: "{uninstallexe}"; WorkingDir: "{app}"

[Setup]
Expand All @@ -30,7 +29,7 @@ AppName=CodeQuery
AppVersion=0.15
AppCopyright=Copyright 2013-2014 (C) ruben2020
AppId={{D95A3CC0-CC79-4CF1-A92B-50E909B60EF1}
LicenseFile=C:\workspace\codequery\windows-install\LICENSE.txt
LicenseFile=\workspace\codequery\windows-install\LICENSE.txt
DefaultDirName={pf}\CodeQuery
AppPublisher=ruben2020
AppPublisherURL=https://github.com/ruben2020/codequery
Expand Down

0 comments on commit 43b937d

Please sign in to comment.