mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-21 07:28:41 +00:00
11 lines
541 B
Bash
Executable File
11 lines
541 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Info: For debugging use -g and comment the && rm part
|
|
|
|
BASEDIR=$(dirname "$(readlink -f "$0")")
|
|
|
|
g++ $BASEDIR/Image/ImageUtilsTest.cpp -o $BASEDIR/Image/ImageUtilsTest && $BASEDIR/Image/ImageUtilsTest && rm $BASEDIR/Image/ImageUtilsTest
|
|
|
|
g++ $BASEDIR/Threads/ThreadPoolTest.cpp -o $BASEDIR/Threads/ThreadPoolTest && $BASEDIR/Threads/ThreadPoolTest && rm $BASEDIR/Threads/ThreadPoolTest
|
|
|
|
g++ $BASEDIR/Utils/WebUtilsTest.cpp -o $BASEDIR/Utils/WebUtilsTest -l curl && $BASEDIR/Utils/WebUtilsTest && rm $BASEDIR/Utils/WebUtilsTest |