Files
mcaselector-lite/.gitignore
Quinn c2e1b67b4c seperate out library compilation from general compilation
This can help with a more nuanced compilation. (eg. use system libraries
rather than compile our own)
Furthermore, it decreases the needed compilation time, since we needn't
recompile the whole thing when having cleaned out our local sources.
2025-09-13 20:25:38 +02:00

24 lines
338 B
Plaintext

# Copyright (c) 2025 Quinn
# Licensed under the MIT Licence. See LICENSE for details
# ignore all dotfiles by default
.*
# unhide dotfiles we want to keep
!.gitignore
!.gitmodules
!.editorconfig
!.clang-format
!/.github/
# hide output files
*.o
*.d
*.out
*.lock
/bin/
/obj/
/lib/obj/
compile_commands.json
compile_commands.events.json