9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SOURCEPATH=../source/
|
|
|
|
for i in "$SOURCEPATH"/*.cpp
|
|
do
|
|
include-what-you-use -D _DEBUG -std=c++20 -Wall "$i"
|
|
done
|