This repo contains source code patch files to build OpenRV-BHGC. Improvements include:
- Updated interface style
- New icons
- Streamlined menus
Build time is around 45 minutes on a 32 vCPU VM. VM software configuration should follow the official OpenRV build guide: Visual Studio 2022, Strawberry Perl, MSYS2, etc.
OpenRV-BHGC build steps:
- Download OpenRV-BHGC as a ZIP file
- Open a MSYS2 MINGW64 console and run:
cd /c/Source
git clone --recursive https://github.com/AcademySoftwareFoundation/OpenRV.git
- Merge the contents of openrv-bhgc.zip with the main source code, then run:
cd OpenRV
# if rebuilding, delete the following first:
rm -rf _build/src/*
rm -rf _build/stage/*
rm -rf _build/x64/Release/*
# end rebuild steps
source rvcmds.sh
rvbootstrap
cd /c/Source/OpenRV/_build/stage
find . -name "*.pdb" -type f -delete
find . -name "*.lib" -type f -delete
find . -name "*.ext" -type f -delete
mv app openrv-bhgc
rm -d openrv-bhgc/src
rm -rf openrv-bhgc/include
7z a openrv-bhgc.zip openrv-bhgc