]> git.armaanb.net Git - gen-shell.git/blob - .gitignore
modified cmake
[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
24 # Fortran module files
25 *.mod
26 *.smod
27
28 # Executables
29 *.exe
30 *.out
31 *.app
32 gen-shell
33
34 ### CMake ###
35 CMakeLists.txt.user
36 CMakeCache.txt
37 CMakeFiles
38 CMakeScripts
39 Testing
40 Makefile
41 cmake_install.cmake
42 install_manifest.txt
43 compile_commands.json
44 CTestTestfile.cmake
45 _deps
46 CPackConfig.cmake
47 CPackSourceConfig.cmake
48
49 ### CMake Patch ###
50 # External projects
51 *-prefix/
52
53 ### Linux ###
54 *~
55
56 # temporary files which can be created if a process still has a handle open of a deleted file
57 .fuse_hidden*
58
59 # KDE directory preferences
60 .directory
61
62 # Linux trash folder which might appear on any partition or disk
63 .Trash-*
64
65 # .nfs files are created when an open file is removed but is still being accessed
66 .nfs*
67
68 # End of https://www.toptal.com/developers/gitignore/api/cmake,linux,c++