Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.17 KB

File metadata and controls

39 lines (26 loc) · 1.17 KB

Building Julius

If you have experience in compiling from source, these are the basic instructions.

To build Julius, you'll need:

  • git
  • a compiler (gcc, clang, Visual Studio and MinGW(-w64) are all known to be supported)
  • cmake
  • SDL2
  • SDL2_mixer

After cloning the repo (URL: https://github.com/bvschaik/julius.git), run the following commands:

$ mkdir build && cd build
$ cmake ..
$ make

This results in a julius executable.

To build the Vita or Switch versions, use cmake .. -DVITA_BUILD=ON or cmake .. -DSWITCH_BUILD=ON instead of cmake ...

You'll obviously need the Vita or Switch SDK's. Docker images for the SDK's are available:

  • Vita: gnuton/vitasdk-docker:20190626
  • Switch: rsn8887/switchdev

See Running Julius for instructions on how to configure Julius for your platform.


For detailed building instructions, please check out the respective page: