Go to file
Maschell cbb9dec018 first commit 2020-06-26 20:09:28 +02:00
data first commit 2020-06-26 20:09:28 +02:00
src first commit 2020-06-26 20:09:28 +02:00
.gitignore first commit 2020-06-26 20:09:28 +02:00
Dockerfile first commit 2020-06-26 20:09:28 +02:00
LICENSE first commit 2020-06-26 20:09:28 +02:00
Makefile first commit 2020-06-26 20:09:28 +02:00
README.md first commit 2020-06-26 20:09:28 +02:00
filelist.sh first commit 2020-06-26 20:09:28 +02:00

README.md

libgui template

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 libguitemplate-builder

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

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