# # # delete "guitone" # # delete "guitone/bin" # # delete "guitone.pro" # # rename "guitone/guitone.pro" # to "guitone.pro" # # rename "guitone/res" # to "res" # # rename "guitone/src" # to "src" # # patch ".mtn-ignore" # from [2b3f6042331d17d47b150099b59331c4fd43c525] # to [c42106818e0f916bbdb0b44ecb5d942ac9d2f45b] # # patch "README" # from [d6f2ff74aa5555af54f944c6bd9327a4aa0dab25] # to [50132fc611e440be8b9c84fcf27197bf80b9d47b] # # patch "build.sh" # from [09fd336def3a03ac273b673eae083c9891612925] # to [ddfaacaa02226863aafeb6e399f18168091b3765] # # patch "init-vc.bat" # from [1e64a000e52c1d0e48058bdc1a6d469ba1e9a287] # to [3b31eea5264aa9fc21ec5fa25c5784e2c6b3830c] # # patch "osx_bundle.sh" # from [dfe77bce479e1d4a8898c5f9b36f3cdc3b4d8b93] # to [d333d018d0b32b99515054b6511dd107f57471a8] # ============================================================ --- .mtn-ignore 2b3f6042331d17d47b150099b59331c4fd43c525 +++ .mtn-ignore c42106818e0f916bbdb0b44ecb5d942ac9d2f45b @@ -1,9 +1,9 @@ Info.plist Makefile .*\.xcodeproj Info.plist -guitone\/res\/i18n\/.+\.qm -guitone\/tmp.* -guitone\/bin/.* +[^\/]+\.qm +^tmp +^bin \.moc \.obj tests/tmp ============================================================ --- README d6f2ff74aa5555af54f944c6bd9327a4aa0dab25 +++ README 50132fc611e440be8b9c84fcf27197bf80b9d47b @@ -30,7 +30,7 @@ and open this with Xcode. If you need to tweak settings (i.e. architecture) in the Qt project file (guitone.pro), remember to redo this step. -The created binary can be found in guitone/bin. +The created binary can be found in bin/. If you like to build on Windows, all you need is a working version of Qt 4.2.x. Please check the docs at trolltech.com for assistance how to ============================================================ --- build.sh 09fd336def3a03ac273b673eae083c9891612925 +++ build.sh ddfaacaa02226863aafeb6e399f18168091b3765 @@ -1,9 +1,6 @@ #!/bin/sh -qmake guitone.pro - -cd guitone && \ +qmake guitone.pro && \ lrelease guitone.pro && \ - cd .. make $@ ============================================================ --- init-vc.bat 1e64a000e52c1d0e48058bdc1a6d469ba1e9a287 +++ init-vc.bat 3b31eea5264aa9fc21ec5fa25c5784e2c6b3830c @@ -1,6 +1,3 @@ -qmake guitone.pro -cd guitone qmake -t vcapp guitone.pro lupdate guitone.pro lrelease guitone.pro -cd .. ============================================================ --- osx_bundle.sh dfe77bce479e1d4a8898c5f9b36f3cdc3b4d8b93 +++ osx_bundle.sh d333d018d0b32b99515054b6511dd107f57471a8 @@ -27,7 +27,7 @@ # # relative path to the directory which contains the created app bundle -BIN_DIR="guitone/bin" +BIN_DIR="bin" # name of the binary BINARY_NAME="guitone" # Qt libraries you've linked against