Mercurial > msvpvf
annotate .hgignore @ 79:8f90d5addda9 v2.0
*: refactor... basically everything!
The Win32 GUI version is now unicode-friendly. HOWEVER, ANSI still very
much works. you can configure which version to use through `-DUNICODE=0/1`
in CFLAGS.
the CLI is also friendlier and uses a more sane interface as well.
note: the command line flags (which were optional before) are now required.
Unicode filenames will not work on Windows because Windows sucks.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 20 Mar 2024 17:06:26 -0400 |
parents | fae1d67d8cfd |
children |
rev | line source |
---|---|
78 | 1 syntax: glob |
2 # Prerequisites | |
3 *.d | |
4 | |
5 # Object files | |
6 *.o | |
7 *.ko | |
8 *.obj | |
9 *.elf | |
10 | |
11 # Linker output | |
12 *.ilk | |
13 *.map | |
14 *.exp | |
15 | |
16 # Precompiled Headers | |
17 *.gch | |
18 *.pch | |
19 | |
20 # Libraries | |
21 *.lib | |
22 *.a | |
23 *.la | |
24 *.lo | |
25 | |
26 # Shared objects (inc. Windows DLLs) | |
27 *.dll | |
28 *.so | |
29 *.so.* | |
30 *.dylib | |
31 | |
32 # Executables | |
33 *.exe | |
34 *.out | |
35 *.app | |
36 *.i*86 | |
37 *.x86_64 | |
38 *.hex | |
39 | |
40 # Debug files | |
41 *.dSYM/ | |
42 *.su | |
43 *.idb | |
44 *.pdb | |
45 | |
46 # Kernel Module Compile Results | |
47 *.mod* | |
48 *.cmd | |
49 .tmp_versions/ | |
50 modules.order | |
51 Module.symvers | |
52 Mkfile.old | |
53 dkms.conf | |
54 | |
55 # VEGAS Project Files | |
56 *.veg | |
57 *.vf |