7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
if [[ $# -eq 0 ]] ; then
|
|
echo Use: $0 [test name]
|
|
exit 1
|
|
fi
|
|
g++ -Wall -Wextra -std=c++17 -I./lest -I./../src -lstdc++fs -o $1.test $1.cpp
|