The make qmltest target writes its CMake build tree to build-tests/ (deliberately distinct from the regular build/ tree so a configured-with -DBUILD_TESTING=ON tree doesn't shadow production builds). The existing build/ patterns don't match it, so it kept showing up as untracked. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
43 lines
592 B
Plaintext
43 lines
592 B
Plaintext
# Build artefacts
|
|
build/
|
|
**/build/
|
|
build-tests/
|
|
**/build-tests/
|
|
|
|
# Composer
|
|
vendor/
|
|
composer.phar
|
|
# Library packages don't ship composer.lock; applications do.
|
|
framework/php/composer.lock
|
|
|
|
# PHPUnit
|
|
.phpunit.cache/
|
|
.phpunit.result.cache
|
|
|
|
# PHP CS Fixer
|
|
.php-cs-fixer.cache
|
|
|
|
# Symfony / app data
|
|
**/var/
|
|
.env.local
|
|
.env.*.local
|
|
.env.local.php
|
|
# Auto-generated Symfony config typings (regenerated on every install).
|
|
**/config/reference.php
|
|
|
|
# Qt / CMake intermediates
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
*.pro.user
|
|
.qt/
|
|
.rcc/
|
|
.qmlls.ini
|
|
moc_*.cpp
|
|
moc_*.h
|
|
qrc_*.cpp
|
|
ui_*.h
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
*.swp
|