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