comparison .hgignore @ 1098:6c15d37b7518

cmake: switch back to CMake because of portability issues
author David Demelier <markand@malikania.fr>
date Wed, 22 Sep 2021 15:44:36 +0200
parents 76fecad14b00
children a09d4c9b8518
comparison
equal deleted inserted replaced
1097:617c88eb9da9 1098:6c15d37b7518
1 # temporary files. 1 # CMake files.
2 \.a$ 2 ^build
3 \.d$
4 \.o$
5 \.so$
6 3
7 # vim/emacs specific. 4 # vim/emacs specific.
8 ^tags$ 5 ^tags$
9 ^cscope\.out$
10 ^tags\.lock$ 6 ^tags\.lock$
11 ^tags\.temp$ 7 ^tags\.temp$
8 ^cscope\.out$
12 \.swp$ 9 \.swp$
13 \.swo$ 10 \.swo$
14 11
15 # executables.
16 ^irccd/irccd$
17 ^irccdctl/irccdctl$
18
19 # generated files.
20 ^irccd/conf\.c$
21 ^irccd/conf\.h$
22 ^irccd/lex\.c$
23 ^lib/irccd/config\.h$
24
25 # macOS specific. 12 # macOS specific.
26 \.DS_Store$ 13 \.DS_Store$
27 \.dSYM
28
29 # tests files.
30 ^tests/test-bot$
31 ^tests/test-channel$
32 ^tests/test-dl-plugin$
33 ^tests/test-event$
34 ^tests/test-jsapi-chrono$
35 ^tests/test-jsapi-directory$
36 ^tests/test-jsapi-file$
37 ^tests/test-jsapi-irccd$
38 ^tests/test-jsapi-system$
39 ^tests/test-jsapi-timer$
40 ^tests/test-jsapi-unicode$
41 ^tests/test-jsapi-util$
42 ^tests/test-log$
43 ^tests/test-plugin-ask$
44 ^tests/test-plugin-auth$
45 ^tests/test-plugin-hangman$
46 ^tests/test-plugin-history$
47 ^tests/test-plugin-joke$
48 ^tests/test-plugin-logger$
49 ^tests/test-plugin-plugin$
50 ^tests/test-plugin-tictactoe$
51 ^tests/test-rule$
52 ^tests/test-subst$
53 ^tests/test-util$