From 9ea7ca67de66764fb78a2ce454ace4f0f6e2bf9e Mon Sep 17 00:00:00 2001 From: Patrick Kappl Date: Thu, 11 Jan 2024 13:11:50 +0100 Subject: [PATCH] Remove build directory and update .gitignore --- .gitignore | 19 ++++++------------- build/notes.txt | 6 ------ 2 files changed, 6 insertions(+), 19 deletions(-) delete mode 100644 build/notes.txt diff --git a/.gitignore b/.gitignore index b3d7771..b9cdc00 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,7 @@ +.cache/ +.vs/ +.vscode/ +/[Bb]uild -# ignore dir -#build/ -build/*.txt -build/Makefile -build/*.cmake -build/CMakeFiles -build/sdk_core -build/sample - -#whitelist -!build/notes.txt - - +compile_commands.json +CMakeUserPresets.json diff --git a/build/notes.txt b/build/notes.txt deleted file mode 100644 index a3eb7a4..0000000 --- a/build/notes.txt +++ /dev/null @@ -1,6 +0,0 @@ -// 2019/01/07 -The purpose of adding this file is to commit the build folder to git. - -// Must build the project in this folder,for example: -cmake .. // generate makefile,in the project root directory. -make // build the project.