-
-
Notifications
You must be signed in to change notification settings - Fork 73
Building for Windows
Taiko2k edited this page Nov 25, 2022
·
52 revisions
Tauon for Windows can be built using MSYS2
- Go to http://www.msys2.org/ and download the x86_64 installer.
- Follow the instructions on the page for setting up the basic environment.
- Run
C:\msys64\mingw64.exe
- a terminal window should pop up. - Update
pacman -Syu
. (You may need to reopen mingw64.exe after this) - Update again and install git
pacman -Syu git
. git clone https://github.com/Taiko2k/TauonMusicBox.git --recursive
- Execute
pacman -S - < extra/msyspac.txt
to install required dependencies. - Execute
pip install -r extra/win-requirements.txt
to install python dependencies. - Compile needed Tauon modules using
bash compile-phazor.sh
. - (optional) Compile translations using
python compile-translations.py
. - (optional) Add recommended fonts: In source directory, create a directory named
fonts
, and place Noto Sans font files in there. - You should now be able to run using
python tauon.py
. To package into an exe:bash win-build.sh
, then the resulting build will be in thedist
directory.