1# editor-specific files
2\#*
3.#*
4*~
5.*.swp
6/CMakeLists.txt.user
7
8# ELF files
9*.o
10*.a
11*.so
12
13# python bytecode
14*.pyc
15*.pyo
16__pycache__
17*.pyd
18
19# MSVC files
20*.pdb
21*.dll
22*.exe
23
24# workflow
25*.orig
26/TODO.org
27
28# build system
29/bin
30/.bin
31/build
32/deps
33
34# root dir run script
35/run
36/run.cpp
37/run.html
38
39# CMake in-source builds
40/DartConfiguration.tcl
41/codegen_depend_cache
42/codegen_target_cache
43/Doxyfile
44/Testing
45/py/setup.py
46CTestTestfile.cmake
47CMakeFiles
48cmake_install.cmake
49CMakeCache.txt
50Makefile
51!/Makefile
52
53# debugging
54callgrind.out.*
55perf.data*
56.gdb_history
57
58# code search
59/.agignore
60/.globalrc
61/GPATH
62/GRTAGS
63/GTAGS
64
65# IDEs
66.vscode
67.idea
68
69# macOS
70.DS_Store
71