]> git.armaanb.net Git - gen-shell.git/blob - .gitignore
semi-usable!
[gen-shell.git] / .gitignore
1
2 # Created by https://www.toptal.com/developers/gitignore/api/cmake,linux,c++
3 # Edit at https://www.toptal.com/developers/gitignore?templates=cmake,linux,c++
4
5 ### C++ ###
6 # Prerequisites
7 *.d
8
9 # Compiled Object files
10 *.slo
11 *.lo
12 *.o
13 *.obj
14
15 # Precompiled Headers
16 *.gch
17 *.pch
18
19 # Compiled Dynamic libraries
20 *.so
21 *.dylib
22 *.dll
23 *.a
24
25 # Fortran module files
26 *.mod
27 *.smod
28
29 # Executables
30 *.exe
31 *.out
32 *.app
33 gen-shell
34
35 ### CMake ###
36 CMakeLists.txt.user
37 CMakeCache.txt
38 CMakeFiles
39 CMakeScripts
40 Testing
41 Makefile
42 cmake_install.cmake
43 install_manifest.txt
44 compile_commands.json
45 CTestTestfile.cmake
46 _deps
47 CPackConfig.cmake
48 CPackSourceConfig.cmake
49
50 ### CMake Patch ###
51 # External projects
52 *-prefix/
53
54 ### Linux ###
55 *~
56
57 # temporary files which can be created if a process still has a handle open of a deleted file
58 .fuse_hidden*
59
60 # KDE directory preferences
61 .directory
62
63 # Linux trash folder which might appear on any partition or disk
64 .Trash-*
65
66 # .nfs files are created when an open file is removed but is still being accessed
67 .nfs*
68
69 # End of https://www.toptal.com/developers/gitignore/api/cmake,linux,c++