mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-16 21:25:46 +01:00
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.
24 lines
338 B
Plaintext
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
|