From b95ea6ddc477ee9c566ceed4117345606628fb8b Mon Sep 17 00:00:00 2001 From: Reijo Tomperi Date: Mon, 12 Oct 2009 21:36:38 +0300 Subject: [PATCH] Fix #814 (Improvements for readme.txt) http://sourceforge.net/apps/trac/cppcheck/ticket/814 --- readme.txt | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/readme.txt b/readme.txt index b29de8f3c..66d364f99 100644 --- a/readme.txt +++ b/readme.txt @@ -16,12 +16,20 @@ Compiling The Makefile works under Linux. To make it work under Windows with DJGPP, change "g++" to "gxx". - To build cppcheck with qmake, run this commands: - qmake -config release – this will generate Makefile (use 'debug' instead of - 'release' if doing developer build) - make – this will build command-line tool, GUI and autotests - make sub-src – this will build command-line tool only - make check – this one will build and run autotests + To build cppcheck with qmake, run these commands: + + Generate Makefile (use 'debug' instead of 'release' if doing developer build) + (If you are using Mac OS, you need to add "-spec macx-g++" to the command): + qmake -config release + + Build command-line tool, GUI and autotests: + make + + To build command-line tool only: + make sub-src + + To build and run autotests: + make check Cross compiling Win32 (CLI) version of Cppcheck in Linux