From 08b4825cd2eb5c33160945a7c66621588261bff7 Mon Sep 17 00:00:00 2001 From: siriusfox Date: Sat, 2 Jul 2022 18:12:16 -0700 Subject: [PATCH] tidy up --- .vscode/c_cpp_properties.json | 2 +- build.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 6663e93..ef24e92 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -2,7 +2,7 @@ "env": { "defaultIncludePath": [ "${workspaceFolder}/src", - "${workspaceFolder}/include" + "${workspaceFolder}/include" ] }, "configurations": [ diff --git a/build.sh b/build.sh index 3238252..2ccb61c 100755 --- a/build.sh +++ b/build.sh @@ -11,8 +11,8 @@ SRC_FILES=($(find src/ -iname "*.c" -or -iname "*.cpp")) g++ -g -fdiagnostics-color=always \ -Iinclude \ - ${SRC_FILES[@]} \ + ${SRC_FILES[@]} \ mybox.cpp \ - -ldl -lglfw -lGL -lX11 -lpthread -lXrandr -lXi -lm \ + -ldl -lglfw -lGL -lX11 -lpthread -lXrandr -lm \ -o build/main