/ .gitignore
.gitignore
1 # SPDX-FileCopyrightText: Copyright (C) 2024-2025 Marek Küthe <m.k@mk16.de> 2 # 3 # SPDX-License-Identifier: GPL-3.0-or-later 4 5 # ---> C++ 6 # Prerequisites 7 *.d 8 9 # Compiled Object files 10 *.slo 11 *.lo 12 *.o 13 *.obj 14 15 # Precompiled Headers 16 *.gch 17 *.pch 18 19 # Compiled Dynamic libraries 20 *.so 21 *.dylib 22 *.dll 23 24 # Fortran module files 25 *.mod 26 *.smod 27 28 # Compiled Static libraries 29 *.lai 30 *.la 31 *.a 32 *.lib 33 34 # Executables 35 *.exe 36 *.out 37 *.app 38 39 # IDE 40 .vscode/ 41 42 # Meson 43 build/ 44 builddir/ 45 46 # cppcheck 47 cppcheck-cppcheck-build-dir/ 48 49 # Debian package 50 debian/crazytrace/ 51 debian/debhelper-build-stamp 52 *.deb 53 .debhelper/ 54 55 # Infer 56 .cache/ 57 infer-out/