nonameentername / godot-csound

Godot gdextension csound library to allow playing music using csound.
https://nonameentername.github.io/godot-csound/csoundgodot.html
GNU Lesser General Public License v2.1
6 stars 0 forks source link

godot-csound

Godot gdextension csound library to allow playing music using csound. Currently works with Godot v4.3 stable release.

Project running in the browser godot-csound

Projects using godot-csound

How to Install

This project uses docker to build the project for different platforms. The build scripts were developed using Ubuntu (x86_64).

Instructions

  1. Install docker using apt:
sudo apt install docker.io
  1. Add user to docker group:
sudo usermod -a -G docker $USER
  1. Initialize git submodules:
git submodule update --init --recursive
  1. Build project using make:
#build all platforms
make all

#build for ubuntu
make ubuntu

#build for windows
make mingw

#build for MacOS
make osxcross

#build for iOS
make ioscross

#build for Android
make android

#build for web
make web