diff options
author | 2022-04-03 19:13:29 +0530 | |
---|---|---|
committer | 2022-04-03 19:13:29 +0530 | |
commit | ee44ffc271ae7dbe53fd44c8146e5569f8c0ee22 (patch) | |
tree | 9f5d7ecc74a206984aee068ce50d5107e8b64f7c /.gitignore | |
download | mandle-main.tar mandle-main.tar.gz mandle-main.tar.bz2 mandle-main.tar.lz mandle-main.tar.xz mandle-main.tar.zst mandle-main.zip |
Initial commit
Changes to be committed:
new file: .clang-format
new file: .gitignore
new file: license
new file: mandle.c
new file: meson.build
new file: readme.md
new file: subprojects/sdl2.wrap
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..35df969 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +*.o +*.ko +*.obj +*.elf +*.gch +*.pch +*.dll +*.so +*.so.* +*.dylib +*.exe +*.out +*.app +*.pdb +/build*/ +/subprojects/* +!/subprojects/*.wrap +meson-logs +meson-private +meson_benchmark_setup.dat +meson_test_setup.dat +build.ninja +.ninja_deps +.ninja_logs +compile_commands.json |