SyndicatQuebecoisdelaConstr.../SQCSim2021/external/irrKlang-64bit-1.6.0/examples/01.HelloWorld/Makefile

9 lines
158 B
Makefile
Raw Normal View History

CPP = g++
OPTS = -I"../../include" -L"/usr/lib" ../../bin/linux-gcc-64/libIrrKlang.so -pthread
all:
$(CPP) main.cpp -o example $(OPTS)
clean:
rm example