14 lines
193 B
Bash
14 lines
193 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm ./a.out
|
||
|
|
||
|
g++ \
|
||
|
-Wl,-rpath=. \
|
||
|
-I/home/user/Downloads/TGUI-1.1.0/include/ \
|
||
|
-L./ \
|
||
|
main.cpp \
|
||
|
-ltgui \
|
||
|
-lsfml-graphics -lsfml-window -lsfml-system
|
||
|
|
||
|
./a.out
|