Go to file
2021-01-10 18:23:18 +01:00
.github/workflows [Workflow] Use Environment Files instead of ::set-env 2021-01-09 16:00:05 +01:00
src Various fixes and clean up, reload application via _SYSLaunchTitleWithStdArgsInNoSplash when loading a plugin 2021-01-10 18:22:17 +01:00
.gitignore Use libwupsbackend for wiiloading plugins 2020-05-17 20:29:29 +02:00
Dockerfile Update Dockerfile to use latest libwupsbackend 2021-01-10 18:23:18 +01:00
Makefile Use RPXLoader for loading homebrew, add support for .wuhb 2021-01-09 21:24:45 +01:00
README.md Add a Dockerfile 2020-06-27 12:24:14 +02:00

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t wiiloadplugin-builder

# make 
docker run -it --rm -v ${PWD}:/project wiiloadplugin-builder make

# make clean
docker run -it --rm -v ${PWD}:/project wiiloadplugin-builder make clean