You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -66,7 +67,7 @@ See [CompileHowto.md](doc/development/CompileHowto.md).
66
67
See [Documentation](https://docs.hyperion-project.org/en/user/Installation.html) or on the [Release Repository](https://releases.hyperion-project.org).
67
68
68
69
## Download
69
-
Releases available from the [Hyperion release page](https://github.com/hyperion-project/hyperion.ng/releases).
70
+
GitHub Releases are available on the [Hyperion release page](https://github.com/hyperion-project/hyperion.ng/releases).
Copy file name to clipboardExpand all lines: doc/development/CompileHowto.md
+35-33Lines changed: 35 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,52 +3,54 @@
3
3
If you are using [Docker](https://www.docker.com/), you can compile Hyperion inside a docker container. This keeps your system clean and with a simple script it's easy to use. Supported is also cross compiling for Raspberry Pi (Debian Buster or higher). To compile Hyperion just execute one of the following commands.
4
4
5
5
The compiled binaries and packages will be available at the deploy folder next to the script.<br/>
6
-
Note: call the script with `./docker-compile.sh -h` for more options.
7
6
8
-
## Cross compilation on x86_64 for:
7
+
> [!NOTE]
8
+
> Call the script with `./docker-compile.sh --help` for more options.
After installing the dependencies, you can continue with the compile instructions later on this page (the more detailed way..).
114
116
115
117
## OSX
116
-
To install on OS X you either need Homebrew or Macport but Homebrew is the recommended way to install the packages. To use Homebrew XCode is required as well, use `brew doctor` to check your install.
118
+
To install on OS X you either need [Homebrew](https://brew.sh/) or [Macport](https://www.macports.org/) but Homebrew is the recommended way to install the packages. To use Homebrew, XCode is required as well, use `brew doctor` to check your install.
-[Python 3 (Windows x86-64 executable installer)](https://www.python.org/downloads/windows/) (Check: Add to PATH and Debug Symbols)
132
134
- Open a console window and execute `pip install aqtinstall`.
133
135
- Now we can download Qt to _C:\Qt_`mkdir c:\Qt && aqt install -O c:\Qt 5.15.2 windows desktop win64_msvc2019_64`
134
136
- QT6.2 requires the [Vulkan SDK](https://vulkan.lunarg.com/sdk/home) to be installed
135
137
-[libjpeg-turbo SDK for Visual C++](https://sourceforge.net/projects/libjpeg-turbo/files/)
136
-
- Download the latest 64bit installer (currently `libjpeg-turbo-2.1.3-vc64.exe`) and install to its default location `C:\libjpeg-turbo64`.
138
+
- Download the latest 64bit installer (currently `libjpeg-turbo-3.0.1-vc64.exe`) and install to its default location `C:\libjpeg-turbo64`.
137
139
138
140
### Optional:
139
141
- For DirectX9 grabber:
@@ -171,7 +173,7 @@ bin/hyperiond
171
173
# webui is located on localhost:8090 or 8091
172
174
```
173
175
174
-
In case you would like to build with a dedicated Qt version, Either supply ``QTDIR`` as ``-DQTDIR=<path>`` to cmake or set and environment variable ``QTDIR`` pointing to the Qt installation.
176
+
In case you would like to build with a dedicated Qt version, Either supply ``QTDIR`` as ``-DQTDIR=<path>`` to CMake or set an environment variable ``QTDIR`` pointing to the Qt installation.
175
177
176
178
On Windows MSVC2022 set it via the CMakeSettings.json:
177
179
```posh
@@ -180,7 +182,7 @@ On Windows MSVC2022 set it via the CMakeSettings.json:
0 commit comments