summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-01-03 21:29:39 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-01-03 21:29:39 +0100
commitc66e6f0efa3629ef7da0cacccf7eba674cb55aef (patch)
tree27bf4b67d3c6ce16b0c4259ed324fdc2e9216104
parent99c83e7702cc19fe1b1b5ff72499a2f97e98ef7e (diff)
downloadmana-c66e6f0efa3629ef7da0cacccf7eba674cb55aef.tar.gz
mana-c66e6f0efa3629ef7da0cacccf7eba674cb55aef.tar.bz2
mana-c66e6f0efa3629ef7da0cacccf7eba674cb55aef.tar.xz
mana-c66e6f0efa3629ef7da0cacccf7eba674cb55aef.zip
Updated Qt Creator project and the script used to update it
-rw-r--r--mana.files26
-rwxr-xr-xupdate-creator.sh13
2 files changed, 19 insertions, 20 deletions
diff --git a/mana.files b/mana.files
index d8668dce..ca1f4faf 100644
--- a/mana.files
+++ b/mana.files
@@ -1,44 +1,43 @@
./CMakeLists.txt
-./config.h
./data/CMakeLists.txt
./data/fonts/CMakeLists.txt
-./data/fonts/Makefile.am
./data/graphics/CMakeLists.txt
./data/graphics/gui/CMakeLists.txt
./data/graphics/gui/colors.xml
-./data/graphics/gui/Makefile.am
./data/graphics/gui/speechbubble.xml
./data/graphics/gui/window.xml
./data/graphics/images/CMakeLists.txt
-./data/graphics/images/Makefile.am
-./data/graphics/Makefile.am
./data/graphics/sprites/CMakeLists.txt
./data/graphics/sprites/error.xml
-./data/graphics/sprites/Makefile.am
./data/help/about.txt
./data/help/changes.txt
./data/help/CMakeLists.txt
./data/help/commands.txt
./data/help/header.txt
./data/help/index.txt
-./data/help/Makefile.am
-./data/help/skills.txt
./data/help/support.txt
-./data/help/team.txt
./data/help/windows.txt
./data/icons/CMakeLists.txt
-./data/icons/Makefile.am
-./data/Makefile.am
./docs/clientupdates.txt
./docs/example.mana
./docs/FAQ.txt
./docs/HACKING.txt
./docs/items.txt
-./docs/Makefile.am
./docs/packages.txt
./docs/progression.txt
./docs/sounddev.txt
-./Makefile.am
+./libs/enet/CMakeLists.txt
+./libs/enet/design.txt
+./libs/enet/include/enet/callbacks.h
+./libs/enet/include/enet/enet.h
+./libs/enet/include/enet/list.h
+./libs/enet/include/enet/protocol.h
+./libs/enet/include/enet/time.h
+./libs/enet/include/enet/types.h
+./libs/enet/include/enet/unix.h
+./libs/enet/include/enet/utility.h
+./libs/enet/include/enet/win32.h
+./packaging/windows/portable.xml
./packaging/windows/readme.txt
./po/CMakeLists.txt
./src/animatedsprite.cpp
@@ -302,7 +301,6 @@
./src/log.h
./src/main.cpp
./src/main.h
-./src/Makefile.am
./src/map.cpp
./src/map.h
./src/monster.cpp
diff --git a/update-creator.sh b/update-creator.sh
index edda5613..6acb8522 100755
--- a/update-creator.sh
+++ b/update-creator.sh
@@ -1,8 +1,9 @@
#!/bin/sh
-find -name \*.cpp \
- -o -name \*.h \
- -o -name \*.am \
- -o -name \*.txt \
- -o -name \*.xml \
- -o -name \*.mana \
+find \( -name \*.cpp \
+ -o -name \*.h \
+ -o -name \*.txt \
+ -o -name \*.xml \
+ -o -name \*.mana \
+ \) ! -wholename \*/CMakeFiles/\* \
+ ! -name CMakeCache.txt \
| sort > mana.files