Skip to content

Commit

Permalink
Build script builds executable in build folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
imaginationac committed Mar 8, 2012
1 parent e0125d9 commit 2d1c298
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
*.exe
*.chm
build/
rules.ini
40 changes: 40 additions & 0 deletions BUILD.ahk
@@ -0,0 +1,40 @@
; Build script for Belvedere
; Version 0.0.1
; Author: Dorian Alexander Patterson <imaginationc@gmail.com>
; Requires: AutoHotkey_L 1.1.07.01+
;
; Copyright 2012 Dorian Alexander Patterson
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.

; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.

; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.

; Set up build environment
#NoEnv
#SingleInstance ignore
; NSIS
; Microsoft HTML Help Workshop 1.3
; ahk2exe
$ahk2exe= I:\Program Files (x86)\AutoHotKey\Compiler\Ahk2Exe.exe
; Check dependencies

; Clean old build files

; Compile Belvedere.ahk
RunWait %$ahk2exe% /in Belvedere.ahk /out build/Belvedere.exe


; Compile help.

; Move the executable and help file to the the build folder.

; Copy installer files to build

0 comments on commit 2d1c298

Please sign in to comment.