diff options
author | Leonard Kugis <leonard@kug.is> | 2022-04-27 17:28:10 +0000 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2022-04-27 17:28:10 +0000 |
commit | 432710105944621ed3a10142e2a80ba37c47eb60 (patch) | |
tree | 388852b762a2616e41eddbb9bf342f508a2f264e /.gitignore | |
parent | 6d66503311063929faa7212cadbf3cfe8313e496 (diff) | |
download | vr-video-player-432710105944621ed3a10142e2a80ba37c47eb60.tar.gz vr-video-player-432710105944621ed3a10142e2a80ba37c47eb60.tar.bz2 vr-video-player-432710105944621ed3a10142e2a80ba37c47eb60.zip |
Added Makefile
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 104 |
1 files changed, 95 insertions, 9 deletions
@@ -1,9 +1,95 @@ -# Compiled sibs files -sibs-build/ -compile_commands.json -tests/sibs-build/ -tests/compile_commands.json -vr-video-player -window_texture.o -main.o -.clangd/ +build +bin + +# Created by https://www.toptal.com/developers/gitignore/api/c,c++,linux +# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,linux + +### C ### +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### C++ ### +# Prerequisites + +# Compiled Object files +*.slo + +# Precompiled Headers + +# Compiled Dynamic libraries + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai + +# Executables + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +# End of https://www.toptal.com/developers/gitignore/api/c,c++,linux |