mirror of
https://github.com/OpenRTX/OpenRTX
synced 2026-08-08 12:29:06 -04:00
Right now we depend on developers to know not to commit the meson subproject wraplock file. Folks not familiar with meson may not realize that this is essentially a build artifact, or LLM agents may mistakenly commit this as an oversight. Large meson codebases have ensured this in the past, such as [gstreamer](https://github.com/GStreamer/gstreamer/blob/main/.gitignore#L47) having it in gitignore or [gtk](https://gitlab.gnome.org/GNOME/gtk/-/tree/main/subprojects?ref_type=heads) intentionally not checking in the wraplock. Let's ensure the same for us. Signed-off-by: Ryan Turner <ryan@turnrye.com>
82 lines
928 B
Text
82 lines
928 B
Text
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: Copyright 2020-2026 OpenRTX Contributors
|
|
#
|
|
# This file is part of OpenRTX.
|
|
|
|
#Build dirs
|
|
/build*
|
|
|
|
# Meson wrap lock file
|
|
subprojects/.wraplock
|
|
|
|
# Prerequisites
|
|
*.d
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
*.smod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# Binaries
|
|
*.bin
|
|
*.elf
|
|
*.hex
|
|
*.map
|
|
|
|
# Python byte-compiled
|
|
*/__pycache__
|
|
|
|
# Python virtual environments
|
|
.venv/
|
|
|
|
# Kdevelop files
|
|
*.kdev4
|
|
.kdev4/
|
|
|
|
# gutentags
|
|
tags
|
|
|
|
|
|
# subprojects
|
|
subprojects/radio_tool
|
|
subprojects/codec2
|
|
subprojects/tinyusb
|
|
subprojects/XPowersLib
|
|
subprojects/catch2
|
|
|
|
# ignore log files
|
|
*.log
|
|
|
|
# ignore linux openrtx emulator history file
|
|
.emulatorsh_history
|
|
|
|
# Compiled script
|
|
scripts/get_demod_log
|
|
|
|
# OpenRTX Codeplugs
|
|
*.rtxc
|