-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathxsetup.bat
More file actions
37 lines (27 loc) · 1.08 KB
/
Copy pathxsetup.bat
File metadata and controls
37 lines (27 loc) · 1.08 KB
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
28
29
30
31
32
33
34
35
36
37
@rem Paths for Unicodia
@rem NOTE: You can make your own unversioned ~setup_local.bat.
@rem Scenarios:
@rem 1. 7-Zip is banned for itself, but it is a so indispensable
@rem program that it it exists somewhere (irony).
@rem 2. Some program is installed as portable.
@rem 3. You use the newer Qt.
@rem CMake
@set CMAKE=C:\Qt\Tools\CMake_64\bin\cmake.exe
@rem Qt we compile against
@set QTDIR=c:\Qt\6.2.4\mingw_64
@rem MinGW we compile with; also needed for tape
@rem WARNING: Since 3.1.6, Unicodia needs OpenSSL 3
@rem in DLL binaries, headers and libraries
@rem (before, it had OpenSSL1.1 bins indirectly used by QtNet)
@set MINGW=c:\msys64\mingw64\bin
@rem 7-Zip, needed for everything: Unicodia, tape, data loading
@set SEVENZIP="c:\Program Files\7-zip\7z.exe"
@rem Console UTranslator
@set UTRANSL=UTransCon.exe
@rem Inno Setup
@set INNO="c:\Program Files (x86)\Inno Setup 6\ISCC.exe"
@rem As 7-zip is banned sometimes, but it's ubiquitous...
@if exist %SEVENZIP% goto szexists
@set SEVENZIP1="C:\Program Files\PeaZip\res\bin\7z\7z.exe"
@if exist %SEVENZIP1% set SEVENZIP=%SEVENZIP1%
:szexists