From af6f19e3020c0e8752063ea29f904a75176fb881 Mon Sep 17 00:00:00 2001 From: Christian Knieling Date: Wed, 16 Nov 2022 09:46:02 +0100 Subject: [PATCH] Doc: added section to readme for generating msi installer --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 3a91a7b..4bcbda9 100644 --- a/README.md +++ b/README.md @@ -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 +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)