summaryrefslogtreecommitdiff
path: root/muse2/update_pro.sh
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-09-04 17:43:39 +0000
committerFlorian Jung <flo@windfisch.org>2011-09-04 17:43:39 +0000
commit5669de5d2d1b978bd34c80964d299688282d7027 (patch)
treed049caa2e608865a0381a7096d0f0b97a30a6474 /muse2/update_pro.sh
parent46369b4c33d841aa1ece363c3deb3775658165ad (diff)
added paste dialog plus minor fixes:
- moved and changed muse.pro file - added update_pro.sh and update_translations.sh - updated translations - moved stuff from functions.cpp out to dialogs.cpp - fixed behaviour of movePartsTotheRight(): parts which begin at "start of move" aren't expanded, but moved now
Diffstat (limited to 'muse2/update_pro.sh')
-rwxr-xr-xmuse2/update_pro.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/muse2/update_pro.sh b/muse2/update_pro.sh
new file mode 100755
index 00000000..da249612
--- /dev/null
+++ b/muse2/update_pro.sh
@@ -0,0 +1,24 @@
+{
+ echo 'HEADERS = \';
+ find . -name '*.h' -and -not -path '*/build/*' -printf '\t%p \\\n';
+ echo ' ';
+ echo;
+
+
+ echo 'SOURCES = \';
+ find . -name '*.cpp' -and -not -path '*/build/*' -printf '\t%p \\\n';
+ echo ' ';
+ echo;
+
+
+ echo 'FORMS = \';
+ find . -name '*.ui' -and -not -path '*/build/*' -printf '\t%p \\\n';
+ echo ' ';
+ echo;
+
+
+ echo 'TRANSLATIONS = \';
+ find . -name '*.ts' -and -not -path '*/build/*' -printf '\t%p \\\n';
+ echo ' ';
+ echo;
+} > muse.pro