Ajouts de musique et irrKlang.

This commit is contained in:
Marc-Eric Martel
2021-10-19 10:27:59 -04:00
parent 167548dfc2
commit df3441dad6
778 changed files with 73920 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
# makefile for linux
# if you get an error like this:
# /usr/bin/ld: cannot find -lX11
# then install the libx11-dev lib using something like:
# sudo apt-get install libx11-dev
# and for the 32 bit version, use
# sudo apt-get install libx11-dev:i386
CPP = g++
OPTS = -I"../../include" -I"3rdparty" -L"/usr/lib" -L"3rdparty" -DLINUX -lfltklinux -lX11 ../../bin/linux-gcc/libIrrKlang.so -pthread
all:
$(CPP) main.cpp window.cxx -m32 -o player $(OPTS)
clean:
rm player