Get the plugin registered with the browser
[gssweb.git] / .gitignore
1 # CMake
2 CMakeCache.txt
3 CMakeFiles
4 Makefile
5 cmake_install.cmake
6 install_manifest.txt
7
8 ##
9 ## C++ 
10 ################################
11 # Compiled Object files
12 *.slo
13 *.lo
14 *.o
15 *.obj
16
17 # Compiled Dynamic libraries
18 *.so
19 *.dylib
20 *.dll
21
22 # Compiled Static libraries
23 *.lai
24 *.la
25 *.a
26 *.lib
27
28 # Executables
29 *.exe
30 *.out
31 *.app
32
33 ##
34 ## C Files
35 ##############################
36 # Object files
37 *.o
38 *.ko
39 *.obj
40 *.elf
41
42 # Libraries
43 *.lib
44 *.a
45
46 # Shared objects (inc. Windows DLLs)
47 *.dll
48 *.so
49 *.so.*
50 *.dylib
51
52 # Executables
53 *.exe
54 *.out
55 *.app
56 *.hex