From: Manuel Nickschas Date: Tue, 10 Jun 2008 14:33:30 +0000 (+0200) Subject: Disable disabling of cmake-2.4 related warnings in cmake-2.6 -_- X-Git-Tag: 0.3.0~371^2~8 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=f34d4410328dbbeb9d018ccbc75351325691ac8f;ds=sidebyside Disable disabling of cmake-2.4 related warnings in cmake-2.6 -_- --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 46f4c75b..2490abd6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,10 @@ project(QuasselIRC) cmake_minimum_required(VERSION 2.4.5) -cmake_policy(SET CMP0003 OLD) # suppress linker warnings + +# This would suppress annoying warnings on cmake-2.6, but we can't use it +# with 2.4, so... DUH! +# cmake_policy(SET CMP0003 OLD) # suppress linker warnings if(STATICWIN) set(CMAKE_BUILD_TYPE Release)