diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-05-30 08:50:37 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-30 12:03:22 +0900 |
commit | bb2187ca36a7562b2da43a06d0dffc491a106299 (patch) | |
tree | 68230442778aa8fa52650b2cb5161973360e8997 | |
parent | 2df3c33d5d20074a4a9bc36253a788274c96bd4e (diff) | |
download | subsurface-bb2187ca36a7562b2da43a06d0dffc491a106299.tar.gz |
Add the *.ui files, the Makefiles and other headers to subsurface.files
Makes it easier to open them using Ctrl+k in Qt Creator.
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | Rules.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -233,7 +233,8 @@ release: .PHONY: creator-files creator-files: $(CREATOR_FILES) $(NAME).files: Makefile $(CONFIGFILE) - echo $(wildcard *.h) $(HEADERS) $(SOURCES) | tr ' ' '\n' | sort | uniq > $(NAME).files + echo $(wildcard *.h qt-ui/*.h qt-ui/*.ui) $(HEADERS) $(SOURCES) | tr ' ' '\n' | sort | uniq > $(NAME).files + { echo Makefile; echo Rules.mk; echo Configure.mk; } >> $(NAME).files $(NAME).config: Makefile $(CONFIGFILE) echo $(patsubst -D%,%,$(filter -D%, $(CXXFLAGS) $(CFLAGS) $(EXTRA_FLAGS))) | tr ' ' '\n' | sort | uniq > $(NAME).config $(NAME).includes: Makefile $(CONFIGFILE) |