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:
parent
c9dafdc51c
commit
3014750c55
1 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue