diff options
author | Florian Jung <flo@windfisch.org> | 2011-09-14 19:33:40 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-09-14 19:33:40 +0000 |
commit | 58033553a3e7d529a27a2b3d9ccc721d1e2dcc17 (patch) | |
tree | 160bd9993bca91b68475d4ad4249cc07b89692dd /muse2/update_pro.sh | |
parent | 42269af2e0cc7a8c7b70d89ffa270184acde3dec (diff) | |
parent | 2529ef06d1227b457af051a494ddb579ef590fe3 (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-x | muse2/update_pro.sh | 24 |
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 |