From: Manuel Nickschas Date: Wed, 17 May 2006 23:07:46 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 0.1.0~295 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=8ba17d95a5ab63e42a54e781b776e45daea67e75;hp=925b072e5c7bc38949995902cf7af6e4644c2c55 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 255d5fd8..0e663271 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,7 @@ PROJECT(Quassel) +CMAKE_MINIMUM_REQUIRED(VERSION 2.4.2) + # Select if Quassel should be built in client, server or monolithic mode SET(BUILD "mono" CACHE STRING "Defines which Quassel parts are to be built. Can contain 'server', 'client' and/or 'monolithic' (which is the default).") SET(BUILD_SERVER ) diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 1177e965..f45bf330 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -5,5 +5,7 @@ SET(gui_UICS channelwidget.ui identitiesdlg.ui identitieseditdlg.ui networkeditd QT4_WRAP_UI(_UIC ${gui_UICS}) QT4_WRAP_CPP(_MOC ${gui_MOCS}) +MESSAGE("uic: ${_UIC}") +MESSAGE("moc: ${_MOC}") -ADD_LIBRARY(gui ${_UIC} ${_MOC} ${gui_HDRS} ${gui_SRCS}) +ADD_LIBRARY(gui ${gui_HDRS} ${gui_SRCS} ${_MOC} ${_UIC})