From b69fbb18551891cb20e090a3556d42c808d4f64f Mon Sep 17 00:00:00 2001 From: sladro Date: Fri, 20 Dec 2024 02:18:24 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 60 +++++++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 28 deletions(-) diff --git a/.gitignore b/.gitignore index e257658..2500adf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,34 +1,38 @@ -# ---> C++ -# Prerequisites -*.d +# Build directories +build/ +bin/ +lib/ -# Compiled Object files -*.slo -*.lo +# IDE files +.vscode/ +.idea/ +*.swp +*.swo + +# Compiled files *.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries *.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la *.a -*.lib +*.dll +*.dylib -# Executables -*.exe -*.out -*.app +# CMake files +CMakeCache.txt +CMakeFiles/ +cmake_install.cmake +compile_commands.json +# TensorRT engine files +*.engine +*.plan + +# Python cache +__pycache__/ +*.py[cod] + +# Logs +*.log + +# System files +.DS_Store +Thumbs.db \ No newline at end of file