-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobals.bat
More file actions
29 lines (20 loc) · 815 Bytes
/
globals.bat
File metadata and controls
29 lines (20 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
set PATH=%JP_MyToolsDir%;%JP_ToolsDir%;%PATH%
rem --------------- common -----------------
set AppName=Highlight Text
set AppVer=1.0
set AppDate=2020.10.13
set AppFullName=%AppName% %AppVer%
set AppName_=HighlightText
set AppExe=hlt.exe
set AppUrl=http://www.pazera-software.com/products/highlight-text/
set README=HLT_README.txt
::set ArchiveSrc=%AppFullName%_Project.7z
rem ----------------- Windows 32 bit ---------------------
set AppExe32Compiled=hlt32.exe
set PortableFileZip32=%AppName_%_win32.zip
set CreatePortableZip32=7z a -tzip -mx=9 %PortableFileZip32% %AppExe% %README%
rem ----------------- Windows 64 bit ---------------------
set AppExe64Compiled=hlt64.exe
set PortableFileZip64=%AppName_%_win64.zip
set CreatePortableZip64=7z a -tzip -mx=9 %PortableFileZip64% %AppExe% %README%