diff options
author | 2024-03-07 13:07:59 +0800 | |
---|---|---|
committer | 2024-03-07 13:19:06 +0800 | |
commit | 7e85ab6f9e7114ba05264005172e41fb1c47532c (patch) | |
tree | 47f530ea33faf42c63b67bc25ac387e54e20b2a6 /.gitignore | |
parent | 644f678387cd81a87bd0c73ea0123c825bc99e59 (diff) | |
download | calendar-7e85ab6f9e7114ba05264005172e41fb1c47532c.tar.gz calendar-7e85ab6f9e7114ba05264005172e41fb1c47532c.zip |
Change into cmake
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,17 +1,17 @@ | |||
1 | * | 1 | * |
2 | !*.* | 2 | !*.* |
3 | # Unignore all makefiles named Makefile or makefile | ||
4 | !Makefile | ||
5 | !makefile | ||
6 | #Unignore all dirs | 3 | #Unignore all dirs |
7 | !*/ | 4 | !*/ |
8 | #Ignore swp | ||
9 | *.swp | 5 | *.swp |
10 | #Ignore res | ||
11 | *.txt | 6 | *.txt |
7 | !CMakeLists.txt | ||
12 | push.sh | 8 | push.sh |
13 | !test.sh | 9 | !test.sh |
14 | *.o | 10 | *.o |
15 | #Ignore dir data/vsop87 | 11 | #Ignore dir data/vsop87 |
16 | data/vsop87/* | 12 | data/vsop87/* |
17 | data/vsop87 | 13 | data/vsop87 |
14 | |||
15 | bin/* | ||
16 | lib/* | ||
17 | build/* | ||