14 lines
193 B
Bash
Executable File
14 lines
193 B
Bash
Executable File
#!/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
|