This commit is contained in:
sprague_rick 2024-09-08 02:12:30 -04:00
parent ea9ec684ef
commit 8347be07aa

View File

@ -13,7 +13,7 @@ filename="${filename%.*}"
mkdir -p "build/$filename"
# Compile the C++ file
g++ -I /usr/include/eigen3 -o "build/$filename/$filename" "$1"
g++ -o "build/$filename/$filename" "$1"
# Check if the compilation was successful
if [ $? -eq 0 ]; then