dos/build.sh

5 lines
175 B
Bash
Executable File

#!/bin/sh
set -e # if compilation fail next command will not be executed, so older version of programm will not be launched
g++ src/DosAtk.cpp -o DosAtk -lcurl
./DosAtk "$@"