Skip to content

Commit

Permalink
.gitignore tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalroz committed Jan 3, 2025
1 parent 66c038f commit 74ea9ab
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 255 deletions.
74 changes: 51 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,77 +1,105 @@
syntax: glob

# Temporary, cache, swap files
# Originating in other repositories
# -------------------------------------
external/*
third-party/*


# Files which "ask" to be ignored
# -------------------------------------
\#\#*
*.swp
*.bkp

# Files which "ask" to be hidden
#
*~
.*
unused/

# Build artifacts
# -------------------------------------

# General
*.a
*.o
*.so
*.ptx
bin/*
lib/*
build/
build-*/
bazel-*

# Core dumps
core
core.*
core-*
# CUDA-specific
*.ptx
*.clptx

# CMake & CTest-generated files
# Build system artifacts
# -------------------------------------
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CMakeScripts/*
CMakeTmp/*
Makefile
build.ninja
CTestTestfile.cmake
Testing/
bazel-*


# Core dumps
# -------------------------------------
core
core.*
core-*


# IDE-related
# -------------------------------------

# Eclise IDE-related files
# Eclise
.project
.cproject
.settings

# CLion IDE-related files
# CLion
.idea/
cmake-build-*/

# VS Code
.vscode


# Patching
# -------------------------------------
*.diff
*.rej
*.orig

# Files/folders downloaded from other repositories as part of the build
external/*
third-party/*

# Miscellaneous
tags
log
*.log
*.v3breakpoints
gmon.out
.DS_Store

# Doxygen
# -------------------------------------
doxygen.log
Doxyfile
docs/
*.tag
*.tag.xml

# Archives
# -------------------------------------
*.zip
*.gz
*.bz2
*.tgz
*.tar
*.xz


# Miscellaneous
# -------------------------------------
tags
log
*.log
*.v3breakpoints
gmon.out
.DS_Store

232 changes: 0 additions & 232 deletions CMakeLists.txt

This file was deleted.

0 comments on commit 74ea9ab

Please sign in to comment.