Re: [cmake-developers] [PATCH] Enable Wmake generator on Linux host

2014-03-17 Thread Brad King
On 03/17/2014 02:34 PM, Jiri Malak wrote: > I attached corrected patch. Applied with minor tweaks, thanks: Watcom: Enable 'WMake Makefiles' generator on Linux http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=64c2342a -Brad -- Powered by www.kitware.com Please keep messages on-topic and c

Re: [cmake-developers] [PATCH] Enable Wmake generator on Linux host

2014-03-17 Thread Jiri Malak
Brad, I attached corrected patch. Regards Jiri > On 03/16/2014 07:43 AM, Jiri Malak wrote: >> I enclosed patch, which enable generation of wmake makefiles on Linux host. > > The CMake condition > > if(WIN32 OR UNIX AND NOT APPLE) > > and the preprocessor condition > > #if defined(_WIN32) || d

Re: [cmake-developers] [PATCH] Enable Wmake generator on Linux host

2014-03-17 Thread Brad King
On 03/16/2014 07:43 AM, Jiri Malak wrote: > I enclosed patch, which enable generation of wmake makefiles on Linux host. The CMake condition if(WIN32 OR UNIX AND NOT APPLE) and the preprocessor condition #if defined(_WIN32) || defined(__linux__) are not fully equivalent. Instead you could pe

[cmake-developers] [PATCH] Enable Wmake generator on Linux host

2014-03-16 Thread Jiri Malak
I enclosed patch, which enable generation of wmake makefiles on Linux host. Regards Jiri>From 7e3d5e03fe82ad48e404140314b6c1d81ad124ef Mon Sep 17 00:00:00 2001 From: Jiri Malak Date: Sun, 16 Mar 2014 12:36:09 +0100 Subject: [PATCH 2/2] Enable WMake generator on Linux --- Source/CMakeLists.txt