From 95b14c44b5950b6a389d4d6c29f361016ab3f4db Mon Sep 17 00:00:00 2001 From: Hugo Parente Lima Date: Fri, 21 May 2010 19:02:01 -0300 Subject: Use ":" as path splitter on all platforms, this unique behaviour will simplify the CMakeLists.txt and avoid configure errors on non-Unix like platforms. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewer: Luciano Wolf Renato Araújo --- main.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/main.cpp b/main.cpp index 60203922e..f5a254faf 100644 --- a/main.cpp +++ b/main.cpp @@ -29,12 +29,7 @@ #include "generatorrunnerconfig.h" #include "generator.h" -#if defined(Q_OS_WIN32) - #define PATH_SPLITTER ";" -#else - #define PATH_SPLITTER ":" -#endif - +#define PATH_SPLITTER ":" static void printOptions(QTextStream& s, const QMap& options) { QMap::const_iterator it = options.constBegin(); -- cgit v1.2.3