Meta: Add generated cpp-files to QtCreator project

This simplifies navigation, because "Follow symbol under cursor" now
works reliably, even with symbols defined in generated files.
This commit is contained in:
Ben Wiederhake
2026-02-22 15:37:04 +01:00
committed by Jelle Raaijmakers
parent c9dafdc51c
commit 3014750c55
Notes: github-actions[bot] 2026-02-23 12:11:08 +00:00

View File

@@ -23,6 +23,7 @@ find . \( \
-name '*.ipc' \
-o -name '*.cpp' \
-o -name '*.idl' \
-o -name '*.c' \
-o -name '*.h' \
-o -name '*.in' \
-o -name '*.css' \
@@ -31,3 +32,9 @@ find . \( \
-o -name 'CMakeLists.txt' \
\) \
-print > ladybird.files
find Build/release/ \( \
-name '*.cpp' \
-o -name '*.idl' \
-o -name '*.h' \
\) \
-print >> ladybird.files # Append