HISE Logo Forum
    • Categories
    • Register
    • Login

    Installers

    Scheduled Pinned Locked Moved General Questions
    101 Posts 9 Posters 8.3k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Christoph HartC
      Christoph Hart
      last edited by

      You need to add the directory where HISE.exe is located to the environment variable PATH. Welcome to the joyful world of build automation :)

      LindonL 1 Reply Last reply Reply Quote 0
      • d.healeyD
        d.healey
        last edited by

        Oh yeah I forgot to mention that. It's included in the build.bat instructions though

        REM Environment variables, comment for build server usage
        REM set hise_path="D:\Development\HISE modules\projects\standalone\Builds\VisualStudio2017\x64\Release\App\HISE.exe"
        

        Libre Wave - Freedom respecting instruments and effects
        My Patreon - HISE tutorials
        YouTube Channel - Public HISE tutorials

        LindonL 1 Reply Last reply Reply Quote 0
        • d.healeyD
          d.healey
          last edited by

          I'm hitting a couple of issues with building via the automated script (building via the export menu works just fine).

          Cleaning Builds but keeping the source code...
          Loading the preset...Invalid script: The script you are trying to load is not a valid HISE script file.
          The callback function onControl( is not defined.
          

          I get this invalid script error but I've checked all scripts and they have onControl, except for some that are includes.

          Then I get this a little later

          C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Platforms\Win32\PlatformToolsets
          \v141\ImportBefore\Intel.Libs.IPP.v141.targets(90,43): error MSB4086: A numeric comparison was attempted on "$(IPPMajor
          Version)" that evaluates to "" instead of a number, in condition "'$(IPPSingleThreaded)'=='0' AND ('$(UseIntelIPP)' ==
          'Sequential' OR '$(UseIntelIPP)' == 'Sequential_Dynamic' OR ('$(UseIntelIPP)' == 'true' AND '%(ClCompile.OpenMPSupport)
          ' != 'true')) AND $(IPPMajorVersion) > 7". [C:\Users\John\Downloads\michaelasHarp-master\Binaries\Builds\VisualStudio20
          17\Michaelas Harp_App.vcxproj]
          

          Libre Wave - Freedom respecting instruments and effects
          My Patreon - HISE tutorials
          YouTube Channel - Public HISE tutorials

          1 Reply Last reply Reply Quote 0
          • LindonL
            Lindon @Christoph Hart
            last edited by

            @Christoph-Hart yeah, but I'm not really looking for build automation. Like many things in HISE this stuff is great, in that its powerful and useful, but its very very brittle, unless I'm set up EXACTLY like you then it breaks and doesnt work at all.

            HISE Development for hire.
            www.channelrobot.com

            1 Reply Last reply Reply Quote 0
            • LindonL
              Lindon @d.healey
              last edited by Lindon

              @d-healey
              "Oh yeah I forgot to mention that. It's included in the build.bat instructions though"

              so in the thing I'm supposed to be running are instruction that need to execute BEFORE I run the thing....

              HISE Development for hire.
              www.channelrobot.com

              d.healeyD 1 Reply Last reply Reply Quote 1
              • d.healeyD
                d.healey @Lindon
                last edited by d.healey

                @Lindon Yup, that's why I always read through scripts to figure out what they do.

                @Christoph-Hart Might be a good idea to include that in the help section :)

                Libre Wave - Freedom respecting instruments and effects
                My Patreon - HISE tutorials
                YouTube Channel - Public HISE tutorials

                1 Reply Last reply Reply Quote 0
                • d.healeyD
                  d.healey
                  last edited by

                  It just occurred to me to run --help on the HISE CLI. Useful reference

                  export: builds the project using the default settings
                  export_ci: builds the project using customized behaviour for automated builds
                   - always use VisualStudio 2017 on Windows
                   - don't copy the plugins to the plugin folders
                   - use a relative path for the project file
                  Arguments:
                  FILE      The path to the project file (either .xml or .hip you want to export).
                            In CI mode, this will be the relative path from the current project folder
                            In standard mode, it must be an absolute path
                  -h:{TEXT} sets the HISE path. Use this if you don't have compiler settings set.
                  -ipp      enables Intel Performance Primitives for fast convolution.
                  -t:{TEXT} sets the project type ('standalone' | 'instrument' | 'effect')
                  -p:{TEXT} sets the plugin type ('VST' | 'AU' | 'VST_AU' | 'AAX' | 'ALL')
                            (Leave empty for standalone export)
                  -a:{TEXT} sets the architecture ('x86', 'x64', 'x86x64').
                            (Leave empty on OSX for Universal binary.)
                  --test [PLUGIN_FILE]
                  Tests the given plugin
                  
                  set_project_folder -p:PATH
                  Changes the current project folder.
                  
                  set_hise_folder -p:PATH
                  Sets the location for the HISE source code folder.
                  get_project_folder
                  Returns the current project folder.
                  
                  set_version -v:NEW_VERSION_STRING
                  Sets the project version number to the given string
                  
                  clean [-p:PATH] [-all]
                  Cleans the Binaries folder of the given project.
                  -p:PATH - the path to the project folder.
                  
                  create-win-installer
                  Creates a template install script for Inno Setup for the project
                  

                  Libre Wave - Freedom respecting instruments and effects
                  My Patreon - HISE tutorials
                  YouTube Channel - Public HISE tutorials

                  1 Reply Last reply Reply Quote 0
                  • LindonL
                    Lindon
                    last edited by

                    Im sorry but can we please get the "build automation/CLI" stuff into another thread, I'd really really like to concentrate on getting a usable installer script here...

                    HISE Development for hire.
                    www.channelrobot.com

                    d.healeyD 1 Reply Last reply Reply Quote 0
                    • d.healeyD
                      d.healey @Lindon
                      last edited by

                      @Lindon I've just compiled all versions and created the installer using the build script, so it does work with a bit of fiddling. If you want to create your installer independent of the build script then just edit the WinInstaller.iss file to your needs and run it through ISCC.exe via the command line.

                      Libre Wave - Freedom respecting instruments and effects
                      My Patreon - HISE tutorials
                      YouTube Channel - Public HISE tutorials

                      LindonL 1 Reply Last reply Reply Quote 0
                      • LindonL
                        Lindon @d.healey
                        last edited by

                        @d-healey except of course it doesnt work like that. If I copy the file to my project folder and open it in inno then this line errors...

                        ; VST
                        Source: "build\VST\{#AppName} x86.dll";
                        

                        ..because, and I dont know about your projects, but my projects have never had this structure... the dll is in
                        \Binaries\Compiled\VST{#AppName} x86.dll";

                        ..so it means hand-editing it (which I dont mind doing), but again more Brittle behaviors.

                        HISE Development for hire.
                        www.channelrobot.com

                        LindonL 1 Reply Last reply Reply Quote 0
                        • LindonL
                          Lindon @Lindon
                          last edited by

                          @Lindon So I will attempt to build a .iss file that works "out of the box" with a "standard HISE project structure" and if/when I get it working I will share it here.

                          HISE Development for hire.
                          www.channelrobot.com

                          1 Reply Last reply Reply Quote 0
                          • d.healeyD
                            d.healey
                            last edited by

                            The build\VST folder is created by the automated build script. I wonder why it doesn't just use the usual folder structure though...

                            Libre Wave - Freedom respecting instruments and effects
                            My Patreon - HISE tutorials
                            YouTube Channel - Public HISE tutorials

                            1 Reply Last reply Reply Quote 0
                            • Christoph HartC
                              Christoph Hart
                              last edited by

                              i think it had something to do with the AAX plugins which needed special treatment.

                              1 Reply Last reply Reply Quote 1
                              • d.healeyD
                                d.healey
                                last edited by

                                Uninstallers...

                                I'm not familiar enough with whitebox or inno setup. Is it possible to make the uninstallers remove the configuration files that HISE plugins add to appData and where ever they are put on a Mac?

                                Libre Wave - Freedom respecting instruments and effects
                                My Patreon - HISE tutorials
                                YouTube Channel - Public HISE tutorials

                                1 Reply Last reply Reply Quote 1
                                • Christoph HartC
                                  Christoph Hart
                                  last edited by

                                  Innosetup creates an uninstaller automatically but weirdly there is no concept of uninstallers on macOS.

                                  d.healeyD 1 Reply Last reply Reply Quote 0
                                  • d.healeyD
                                    d.healey @Christoph Hart
                                    last edited by

                                    @Christoph-Hart The inno one doesn't remove the config files though :(

                                    Libre Wave - Freedom respecting instruments and effects
                                    My Patreon - HISE tutorials
                                    YouTube Channel - Public HISE tutorials

                                    LindonL 1 Reply Last reply Reply Quote 0
                                    • LindonL
                                      Lindon @d.healey
                                      last edited by

                                      @d-healey correct... everything that your HISE product "installs"(Writes) then the installer - who has long since finished and gone to the pub --- knows nothing about - so the native installer has no idea about all that stuff in /AppData/Roaming etc...

                                      HISE Development for hire.
                                      www.channelrobot.com

                                      d.healeyD 1 Reply Last reply Reply Quote 0
                                      • d.healeyD
                                        d.healey @Lindon
                                        last edited by d.healey

                                        @Lindon But we do :) hence my original question. Can we make the uninstaller remove those files? I can do this easy peasy on GNU with a bash uninstaller.

                                        Libre Wave - Freedom respecting instruments and effects
                                        My Patreon - HISE tutorials
                                        YouTube Channel - Public HISE tutorials

                                        LindonL 1 Reply Last reply Reply Quote 0
                                        • LindonL
                                          Lindon @d.healey
                                          last edited by

                                          @d-healey well we are already at the limits of my inno knowledge here....:-(

                                          HISE Development for hire.
                                          www.channelrobot.com

                                          1 Reply Last reply Reply Quote 0
                                          • LindonL
                                            Lindon
                                            last edited by

                                            but theres this:

                                            Inno Setup Help

                                            favicon

                                            (www.jrsoftware.org)

                                            HISE Development for hire.
                                            www.channelrobot.com

                                            d.healeyD 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            48

                                            Online

                                            1.7k

                                            Users

                                            11.7k

                                            Topics

                                            102.1k

                                            Posts