.gitignore (978B)
1 # Backup 2 *.bak 3 4 # Compiled Object files 5 *.slo 6 *.lo 7 *.o 8 *.obj 9 10 # Precompiled Headers 11 *.gch 12 *.pch 13 14 # Compiled Dynamic libraries 15 *.so 16 *.dylib 17 *.dll 18 19 # Fortran module files 20 *.mod 21 *.smod 22 23 # Compiled Static libraries 24 *.lai 25 *.la 26 *.a 27 *.lib 28 29 # Executables 30 *.exe 31 *.out 32 *.app 33 34 # CMake files 35 CMakeCache.txt 36 CMakeFiles 37 CMakeScripts 38 Makefile 39 cmake_install.cmake 40 install_manifest.txt 41 CTestTestfile.cmake 42 43 # build directory 44 build/ 45 build32/ 46 build64/ 47 cmake-build-debug/ 48 cmake-build-release/ 49 build-*/ 50 build_*/ 51 52 # test directory 53 svg/ 54 55 # Byte-compiled / optimized / DLL files 56 __pycache__/ 57 *.py[cod] 58 *$py.class 59 60 # Distribution / packaging 61 .Python 62 env/ 63 build/ 64 develop-eggs/ 65 dist/ 66 downloads/ 67 eggs/ 68 .eggs/ 69 lib/ 70 lib64/ 71 parts/ 72 sdist/ 73 var/ 74 *.egg-info/ 75 .installed.cfg 76 *.egg 77 venv/ 78 79 # Documentation 80 docs/update.sh 81 82 # CLion 83 .idea/ 84 85 # VSCode 86 .vscode/ 87 .vs/ 88 *.code-workspace 89 90 # CLion 91 cmake-* 92 93 94 !cmake-format* 95 96 *.TMP 97 temp_audio_file.wav 98 .DS_Store 99 100 # Coverage 101 *.profraw 102 *.profdata 103 *.lcov 104 lcov.info 105 106 # clangd 107 .cache