From c56c90bfe10349f57c2fca58749f7e1966194b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 6 Mar 2011 10:18:50 +0100 Subject: [PATCH] readme: better build instructions --- readme.txt | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 0b0a0ab15..b85442449 100644 --- a/readme.txt +++ b/readme.txt @@ -23,7 +23,8 @@ Compiling There are multiple compilation choices: * qmake - cross platform build tool - * Visual Studio - Windows + * Windows: Visual Studio + * Windows: Qt Creator + mingw * gnu make * g++ @@ -36,11 +37,21 @@ Compiling Visual Studio ============= - Use the cppcheck.sln file. + Use the cppcheck.sln file. The pcre dll is needed, it can be downloaded from: + http://cppcheck.sf.net/pcre-8.10-vs.zip + + Qt Creator + mingw + ================== + The PCRE dll is needed to build the CLI. It can be downloaded here: + http://software-download.name/pcre-library-windows/ gnu make ======== - make + To build Cppcheck with rules (pcre dependency): + make + + To build Cppcheck without rules (no dependencies): + make CXXFLAGS="-O2" g++ (for experts) =================