Skip to content

Patched files for building OpenRV-BHGC on Windows.

Notifications You must be signed in to change notification settings

BrianHanke/openrv-bhgc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 

Repository files navigation

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:

  1. Download OpenRV-BHGC as a ZIP file
  2. Open a MSYS2 MINGW64 console and run:
cd /c/Source  
git clone --recursive https://github.com/AcademySoftwareFoundation/OpenRV.git
  1. 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