Codebase list crossguid / d8dd3e83-c983-4462-81c4-25fde0fc7fd0/main linux.sh
d8dd3e83-c983-4462-81c4-25fde0fc7fd0/main

Tree @d8dd3e83-c983-4462-81c4-25fde0fc7fd0/main (Download .tar.gz)

linux.sh @d8dd3e83-c983-4462-81c4-25fde0fc7fd0/mainraw · history · blame

#!/usr/bin/env bash

./clean.sh

g++ -c guid.cpp -o guid.o -Wall -std=c++11 -DGUID_LIBUUID
g++ -c test.cpp -o test.o -Wall -std=c++11
g++ -c testmain.cpp -o testmain.o -Wall
g++ test.o guid.o testmain.o -o test -luuid
chmod +x test
./test