859 B
859 B
Musique build instructions
Linux
Consult README.md.
MacOS
Required system dependency is fairly new C++ compiler. The simplest way is to type clang
in terminal, which should launch installation of C++ compiler. Next provided compiler version:
$ clang++ --version
Minimal supported version is 14. On older editions of MacOS one can aquire new editions by Homebrew. After homebrew installation install clang via brew install llvm
.
Next you should be able to build project by running make
command inside main directory (in released zip file in source_code
directory).
Windows
Windows support is provided via cross compilation. Mingw GCC C++ compiler is required to produce Windows binaries.
$ make os=windows
will create bin/musique.exe
that can be used on x86_64 Windows operating systems.