From 311f81cd0fe5117cbd65bdccc0035afa749e19c6 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Tue, 15 Jan 2013 10:09:25 +0100 Subject: [PATCH] Fixed cmake warning related to WIN32 macro when configuring on cygwin Bug: https://bugs.freedesktop.org/show_bug.cgi?id=59401 --- cmake/CMakeLists.txt | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 000acda..5d874fe 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -1,3 +1,6 @@ +# we do not need to have WIN32 defined +set(CMAKE_LEGACY_CYGWIN_WIN32 0) + project(dbus) # we need to be up to date -- 1.7.4.msysgit.0