diff --git a/doc/developers-guide.content b/doc/developers-guide.content index 2dd191d3f..637d24280 100644 --- a/doc/developers-guide.content +++ b/doc/developers-guide.content @@ -29,15 +29,9 @@ mailing list message.

Qt 4.5.0 or later - qt4-mac-devel + qt4-mac libqt4-dev - - Qwt - 5.1.0 or later - qwt - libqwt-dev - Boost 1.38.0 or later @@ -87,14 +81,20 @@ Building an executable libraries referenced above. All local configuration is stored in the file gcconfig.pri, which you create by copying gcconfig.pri.in, both in the GoldenCheetah/src -directory. The steps you'll take are as follows:

+directory. Additionally, GoldenCheetah uses a patched version of Qwt which is located in the +GoldenCheetah/qwt directory. You'll need to copy the +configuration file qwtconfig.pri.in to qwtconfig.pri +and edit that file if needed. The steps you'll take are as follows:

+In the top level GoldenCheetah directory
-cd GoldenCheetah/src
-cp gcconfig.pri.in gcconfig.pri
-vi gcconfig.pri # follow the directions at the top of the file
-qmake # called qmake-mac in MacPorts
+cp src/gcconfig.pri.in src/gcconfig.pri
+cp qwt/qwtconfig.pri.in qwt/qwtconfig.pri
+vi src/gcconfig.pri # Follow the directions at the top of the file.
+vi qwt/qwtconfig.pri # This may not need to be edited to successfully build.
+qmake build.pro # called qmake-mac in MacPorts
 make