summaryrefslogtreecommitdiff
path: root/muse2/update_pro.sh
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-09-14 19:33:40 +0000
committerFlorian Jung <flo@windfisch.org>2011-09-14 19:33:40 +0000
commit58033553a3e7d529a27a2b3d9ccc721d1e2dcc17 (patch)
tree160bd9993bca91b68475d4ad4249cc07b89692dd /muse2/update_pro.sh
parent42269af2e0cc7a8c7b70d89ffa270184acde3dec (diff)
parent2529ef06d1227b457af051a494ddb579ef590fe3 (diff)
merged experimental into trunk
new features: - MDI user interface - improved pasting (dialogs etc) - some fixes
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