From: Manuel Nickschas Date: Tue, 8 Jul 2008 15:50:19 +0000 (+0200) Subject: Getting rid of the annoying cmake-2.6 warning X-Git-Tag: 0.3.0~292 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=50abc51e75b3eaf85bae5793970d2e34814c0682 Getting rid of the annoying cmake-2.6 warning --- diff --git a/CMakeLists.txt b/CMakeLists.txt index c6dd28dc..29fd9630 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,9 +14,9 @@ project(QuasselIRC) # Target scopes don't work in older versions cmake_minimum_required(VERSION 2.4.7 FATAL_ERROR) -# 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(COMMAND cmake_policy) + cmake_policy(SET CMP0003 OLD) # suppress linker warnings +endif(COMMAND cmake_policy) # Use our own (well, KDE's) version of some modules # In particular cmake's FindQt4 and FindOpenSSL are quite buggy