BuildExecutables.sh

This commit is contained in:
vczh
2024-01-06 01:09:10 -08:00
parent ac4f5a2dc3
commit 464ce94d5e
3 changed files with 41 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
CodePack
CppMerge
GacGen
GlrParserGen
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
pushd ./Executables/CodePack
make VCPROOT="$(pwd)/.." clean
make VCPROOT="$(pwd)/.."
popd
pushd ./Executables/CppMerge
make VCPROOT="$(pwd)/.." clean
make VCPROOT="$(pwd)/.."
popd
pushd ./Executables/GlrParserGen
make VCPROOT="$(pwd)/.." clean
make VCPROOT="$(pwd)/.."
popd
pushd ./Executables/GacGen
make VCPROOT="$(pwd)/.." clean
make VCPROOT="$(pwd)/.."
popd
cp ./Executables/CodePack/Bin/CodePack .
cp ./Executables/CppMerge/Bin/CppMerge .
cp ./Executables/GlrParserGen/Bin/GlrParserGen .
cp ./Executables/GacGen/Bin/GacGen .
+11 -1
View File
@@ -4,10 +4,20 @@
- Open `Executables/Executables.sln` in Visual Studio and build `Release` with `x86`.
- Run `CopyExecutables.ps1`.
- New files will be available in this folder:
- CodePack.exe
- CppMerge.exe
- GacGen.exe
- GlrParserGen.exe
## Linux
(editing...)
- Run `BuildExecutables.sh`
- New files will be available in this folder:
- CodePack
- CppMerge
- GacGen
- GlrParserGen
## macOS