mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-01 12:03:09 +00:00
42 lines
1.1 KiB
ReStructuredText
42 lines
1.1 KiB
ReStructuredText
Windows
|
|
=======
|
|
|
|
Requirements
|
|
------------
|
|
First you need to install `MSYS2 <https://www.msys2.org>`_, then startup "MSYS2 MinGW 64-bit" and execute the following
|
|
codes.
|
|
|
|
Update all packages:
|
|
.. code-block:: bash
|
|
|
|
pacman -Suy
|
|
|
|
Install dependencies:
|
|
.. code-block:: bash
|
|
|
|
pacman -S base-devel cmake diffutils gcc git make mingw-w64-x86_64-binutils \
|
|
mingw-w64-x86_64-boost mingw-w64-x86_64-cmake mingw-w64-x86_64-curl \
|
|
mingw-w64-x86_64-libmfx mingw-w64-x86_64-openssl mingw-w64-x86_64-opus \
|
|
mingw-w64-x86_64-toolchain
|
|
|
|
npm dependencies
|
|
----------------
|
|
Install nodejs and npm. Downloads available `here <https://nodejs.org/en/download/>`_.
|
|
|
|
Install npm dependencies.
|
|
.. code-block:: bash
|
|
|
|
npm install
|
|
|
|
Build
|
|
-----
|
|
.. Attention:: Ensure you are in the build directory created during the clone step earlier before continuing.
|
|
|
|
.. code-block:: bash
|
|
|
|
cmake -G "MinGW Makefiles" ..
|
|
mingw32-make -j$(nproc)
|
|
|
|
cpack -G NSIS # optionally, create a windows installer
|
|
cpack -G ZIP # optionally, create a windows standalone package
|