From bcd58af132177e966dbbe4538bccb164059acc6f Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Thu, 2 Nov 2023 20:27:57 +0800 Subject: [PATCH] update gitignore --- .gitignore | 10 ---------- CodeGen/BMapBindings/.gitignore | 4 ++++ CodeGen/EnumsMigration/.gitignore | 4 ++++ CodeGen/VectorGen/.gitignore | 3 +++ CodeGen/{ => VectorGen}/VxVectors.py | 0 Tools/.gitignore | 5 +++++ 6 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 CodeGen/VectorGen/.gitignore rename CodeGen/{ => VectorGen}/VxVectors.py (100%) create mode 100644 Tools/.gitignore diff --git a/.gitignore b/.gitignore index 5344b1f..6f70cfe 100644 --- a/.gitignore +++ b/.gitignore @@ -7,16 +7,6 @@ out/ temp/ .vscode/ -CodeGen/*.hpp -CodeGen/*.cpp -CodeGen/EnumsMigration/dest/*.hpp -CodeGen/EnumsMigration/dest/*.cpp -CodeGen/EnumsMigration/dest/*.py - -Tools/*.bin -Tools/*.obj -Tools/*.mtl - ## CMake Banned CMakeLists.txt.user CMakeCache.txt diff --git a/CodeGen/BMapBindings/.gitignore b/CodeGen/BMapBindings/.gitignore index ac9dc64..b5ee383 100644 --- a/CodeGen/BMapBindings/.gitignore +++ b/CodeGen/BMapBindings/.gitignore @@ -1,3 +1,7 @@ +# ===== Result ===== +dest/* +!dest/*.gitkeep + # ===== Antlr ===== *.interp *.tokens diff --git a/CodeGen/EnumsMigration/.gitignore b/CodeGen/EnumsMigration/.gitignore index f3c5cde..614b5e5 100644 --- a/CodeGen/EnumsMigration/.gitignore +++ b/CodeGen/EnumsMigration/.gitignore @@ -1,3 +1,7 @@ +# ===== Result ===== +dest/* +!dest/*.gitkeep + # Antlr output *.interp *.tokens diff --git a/CodeGen/VectorGen/.gitignore b/CodeGen/VectorGen/.gitignore new file mode 100644 index 0000000..04504e8 --- /dev/null +++ b/CodeGen/VectorGen/.gitignore @@ -0,0 +1,3 @@ +# Result + +*.hpp diff --git a/CodeGen/VxVectors.py b/CodeGen/VectorGen/VxVectors.py similarity index 100% rename from CodeGen/VxVectors.py rename to CodeGen/VectorGen/VxVectors.py diff --git a/Tools/.gitignore b/Tools/.gitignore new file mode 100644 index 0000000..6d060c8 --- /dev/null +++ b/Tools/.gitignore @@ -0,0 +1,5 @@ +# Result + +*.bin +*.obj +*.mtl