-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.ps1.sample
More file actions
11 lines (10 loc) · 875 Bytes
/
config.ps1.sample
File metadata and controls
11 lines (10 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
# MSVC 2022's MSBuild executable. This is probably already correct.
$msbuild = "C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MsBuild.exe"
# Root of your LanguageBarrier64 repository (https://github.com/CommitteeOfZero/LanguageBarrier64), i.e. where LanguageBarrier.sln is
$languagebarrier_dir = ".\LanguageBarrier64"
# Build configuration. This is probably already correct.
$languagebarrier_configuration = "dinput8-Release"
# Build platform. This is probably already correct.
$languagebarrier_platform = "x64"
# Add things that need to be on your PATH for this build here, e.g. Visual C++ 2022 binary dir, Qt 5.x for MSVC 2019 binary dir, 7-Zip binary dir
$env:path = "C:\Qt\5.15.2\msvc2019\bin;C:\Program Files\Microsoft Visual Studio\2022\Community\VC;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build;" + $env:path