comparison .hgignore @ 304:3ccf841ca1fe

make: improve readability and add examples/tests
author David Demelier <markand@malikania.fr>
date Thu, 24 Jun 2021 22:35:02 +0200
parents 789b23e01f52
children 3675021fa6e5
comparison
equal deleted inserted replaced
303:48a09c9d3d00 304:3ccf841ca1fe
1 # temporary files.
2 \.a$
3 \.d$
4 \.o$
5
6 # generated files.
7 assets/.*\.h$
8 ^config\.h$
9
1 # vim/emacs specific. 10 # vim/emacs specific.
2 ^tags$ 11 ^tags$
3 ^tags.lock$ 12 ^tags.lock$
4 ^tags.temp$ 13 ^tags.temp$
5 \.swp$ 14 \.swp$
6 \.swo$ 15 \.swo$
7 16
8 # macOS specific. 17 # macOS specific.
9 \.DS_Store$ 18 \.DS_Store$
10 19
11 # CMake build directory. 20 # examples.
12 ^build$ 21 ^examples/example-action/main$
22 ^examples/example-animation/main$
23 ^examples/example-audio/main$
24 ^examples/example-cursor/main$
25 ^examples/example-debug/main$
26 ^examples/example-drawable/main$
27 ^examples/example-font/main$
28 ^examples/example-gridmenu/main$
29 ^examples/example-label/main$
30 ^examples/example-message/main$
31 ^examples/example-sprite/main$
32 ^examples/example-trace/main$
33 ^examples/example-ui/main$
34
35 # tests.
36 ^tests/test-action$
37 ^tests/test-action-script$
38 ^tests/test-alloc$
39 ^tests/test-character$
40 ^tests/test-color$
41 ^tests/test-drawable$
42 ^tests/test-error$
43 ^tests/test-map$
44 ^tests/test-save$
45 ^tests/test-state$
46 ^tests/test-tileset$
47 ^tests/test-util$
48
49 # maps and tilesets from libmlk-data.
50 ^libmlk-data/maps/.*\.map$
51 ^libmlk-data/maps/.*\.tileset$
52
53 # executables.
54 ^mlk-adventure/mlk-adventure$
55 ^tools/bcc/mlk-bcc$
56 ^tools/map/mlk-map$
57 ^tools/tileset/mlk-tileset$