diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-02-20 21:00:31 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-21 22:34:09 +0100 |
commit | b46da5c2cb2980bd2fd843f9465c0387c2043883 (patch) | |
tree | 72777b6fc23ab63c57cb6e38ff02cdb9efda3443 /Meta/refresh-serenity-qtcreator.sh | |
parent | 2d29bfc89ef9083c240c46d8f59c770b0f08cedd (diff) | |
download | serenity-b46da5c2cb2980bd2fd843f9465c0387c2043883.zip |
Meta: Make CMakeLists accessible to QtCreator
We end up having to edit various CMakeLists.txt all the time, and having to open
them in a different editor becomes old quite fast.
Diffstat (limited to 'Meta/refresh-serenity-qtcreator.sh')
-rwxr-xr-x | Meta/refresh-serenity-qtcreator.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/refresh-serenity-qtcreator.sh b/Meta/refresh-serenity-qtcreator.sh index 58750c8032..f89825b0a4 100755 --- a/Meta/refresh-serenity-qtcreator.sh +++ b/Meta/refresh-serenity-qtcreator.sh @@ -11,4 +11,4 @@ fi cd "$SERENITY_ROOT" -find . \( -name Base -o -name Patches -o -name Ports -o -name Root -o -name Toolchain -o -name Build \) -prune -o \( -name '*.ipc' -or -name '*.cpp' -or -name '*.idl' -or -name '*.c' -or -name '*.h' -or -name '*.S' -or -name '*.css' -or -name '*.json' -or -name '*.gml' \) -print > serenity.files +find . \( -name Base -o -name Patches -o -name Ports -o -name Root -o -name Toolchain -o -name Build \) -prune -o \( -name '*.ipc' -or -name '*.cpp' -or -name '*.idl' -or -name '*.c' -or -name '*.h' -or -name '*.S' -or -name '*.css' -or -name '*.json' -or -name '*.gml' -or -name 'CMakeLists.txt' \) -print > serenity.files |