Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cknieling/msi installer #197

Open
wants to merge 14 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,16 @@ See [Quick Start](#quick-start) how to launch Houdini with Palladio.
1. `nmake palladio_test`
1. Run `bin\palladio_test`

### Building Windows MSI installer
chr11115 marked this conversation as resolved.
Show resolved Hide resolved
1. Open a MSVC 14.27 x64 shell (Visual Studio 2019) and `cd` to the Palladio git repository
1. for each houdini version build the binary files to a local install folder:
1. `mkdir build/installer_XXY` (i.e. `installer_195`)
1. `cd build/installer_XXY`
1. `cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="../../install/houdiniXX.Y" ../../src`
1. `nmake install` (the plugin will be installed to `install/houdiniXX.Y`)
1. From a terminal run `deploy\build.py` and provide the binary folders via `-hXXY "install/houdiniXX.Y"`
1. The MSI installer should now be located in `build/build_msi/`

## Release Notes

### v2.0.0 Beta 1 (Okt 13, 2022)
Expand Down