]> git.armaanb.net Git - gen-shell.git/blob - .gitignore
made 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 commit.h
50 commit.h.in
51
52 ### CMake Patch ###
53 # External projects
54 *-prefix/
55
56 ### Linux ###
57 *~
58
59 # temporary files which can be created if a process still has a handle open of a deleted file
60 .fuse_hidden*
61
62 # KDE directory preferences
63 .directory
64
65 # Linux trash folder which might appear on any partition or disk
66 .Trash-*
67
68 # .nfs files are created when an open file is removed but is still being accessed
69 .nfs*
70
71 # End of https://www.toptal.com/developers/gitignore/api/cmake,linux,c++