X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=CMakeLists.txt;h=c93fa633476c5cfa42ef725628122516dc5e7e3d;hp=e5ffc94f8dff8077f79dd5ae2e561c9cc7d983fd;hb=c95e8cea9060b25fa5115d19090b51f03290adc5;hpb=78ebc9ede7f1f96d7549c07a8f5ce55515146061 diff --git a/CMakeLists.txt b/CMakeLists.txt index e5ffc94f..c93fa633 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,9 @@ # -DWANT_(CORE|QTCLIENT|MONO)=(ON|OFF) # : select binaries to build # -DQT=/path/to/qt : Choose a Qt4 installation to use instead of the system Qt4 -# -DSTATIC : Enable static building of Quassel. Use with care. -# -DSPUTDEV : Do not use. +# -DSTATIC=ON : Enable static building of Quassel. Use with care. +# -DSPUTDEV=ON : Do not use. +# -DDEPLOY=ON : Mac OS X only. Use only fore redistribution Quassel Packages!! # # NOTE: You need to remove CMakeCache.txt if you plan to change any of these values! @@ -13,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 @@ -24,12 +25,15 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules) # Various options and variables that can be set on the command line option(WANT_CORE "Build the core (server) binary" ON) option(WANT_QTCLIENT "Build the Qt4 GUI client binary" ON) -option(WANT_MONO "Build the monolithic (all-in-one) binary" ON) +option(WANT_MONO "Build the monolithic (all-in-one) binary" OFF) -set(STATIC 0 CACHE BOOL "Enable static building (might not be portable)") -set(QT "" CACHE STRING "Path to a Qt installation to use instead of the system Qt") -set(SPUTDEV CACHE STRING "Do not use!") +option(STATIC "Enable static building (might not be portable)" OFF) +option(DEPLOY "Mac OS X only! Adds required libs to bundle resources and create a dmg. Note: requires Qt to be built with 10.4u SDK" OFF) +option(SPUTDEV "Do not use!" OFF) +set(QT "" CACHE STRING "Path to a Qt installation to use instead of the system Qt") +set(LINGUAS "" CACHE STRING "Space-separated List of locales specifying languages that should be compiled") + if(STATIC) set(CMAKE_BUILD_TYPE Release) endif(STATIC) @@ -51,7 +55,13 @@ if(CMAKE_COMPILER_IS_GNUCXX) endif(HAVE_ANSI) endif(CMAKE_COMPILER_IS_GNUCXX) -set(QT_MIN_VERSION "4.3.0") +set(QT_MIN_VERSION "4.4.0") + +if(APPLE AND DEPLOY) + set(CMAKE_OSX_ARCHITECTURES "i386;ppc") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.4") + set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.4u.sdk/") +endif(APPLE AND DEPLOY) # Enable mostly b0rked stuff (new ChatView), do not enable this unless you know what you do... if(SPUTDEV) @@ -60,6 +70,9 @@ endif(SPUTDEV) # Set up OpenSSL find_package(OpenSSL) +if(NOT OPENSSL_FOUND) + add_definitions(-DQT_NO_OPENSSL) +endif(NOT OPENSSL_FOUND) # Select a Qt installation here, if you don't want to use system Qt if(QT) @@ -70,6 +83,12 @@ endif(QT) # Now that we have the correct $PATH, lets find Qt! find_package(Qt4 REQUIRED) +if(QT_QTDBUS_FOUND) + add_definitions(-DHAVE_DBUS) + set(LINK_DBUS DBUS) + set(HAVE_DBUS true) +endif(QT_QTDBUS_FOUND) + set(QT_DONT_USE_QTGUI 1) include(${QT_USE_FILE}) include_directories(${QT_INCLUDES}) @@ -102,8 +121,11 @@ endif(WANT_QTCLIENT OR WANT_MONO) # Make sure version.gen exists before building mod_common add_dependencies(mod_common genversion_run) +# Generate binary translation files +include(QuasselGenerateTranslations) +quassel_generate_i18n_resource(RC_I18N ${LINGUAS}) + # Add resources -qt4_add_resources(RC_I18N i18n/i18n.qrc) qt4_add_resources(RC_ICONS src/icons/icons.qrc) qt4_add_resources(RC_QUASSEL_ICONS src/icons/quassel-icons.qrc) qt4_add_resources(RC_SQL src/core/sql.qrc) @@ -158,7 +180,7 @@ if(WANT_CORE) endif(WANT_CORE) if(WANT_QTCLIENT) - setup_qt4_variables(GUI NETWORK) + setup_qt4_variables(${LINK_DBUS} GUI NETWORK) add_executable(quasselclient WIN32 ${CMAKE_SOURCE_DIR}/src/common/main.cpp ${RC_ICONS} ${RC_QUASSEL_ICONS} ${RC_I18N} ${WIN32_RC}) set_target_properties(quasselclient PROPERTIES @@ -168,7 +190,7 @@ if(WANT_QTCLIENT) endif(WANT_QTCLIENT) if(WANT_MONO) - setup_qt4_variables(GUI NETWORK SCRIPT SQL) + setup_qt4_variables(${LINK_DBUS} GUI NETWORK SCRIPT SQL) add_executable(quassel WIN32 ${CMAKE_SOURCE_DIR}/src/common/main.cpp ${RC_ICONS} ${RC_QUASSEL_ICONS} ${RC_SQL} ${RC_I18N} ${WIN32_RC}) set_target_properties(quassel PROPERTIES @@ -185,6 +207,12 @@ if(APPLE) add_custom_command(TARGET quassel POST_BUILD COMMAND ${CMAKE_SOURCE_DIR}/scripts/build/macosx_makebundle.py ${CMAKE_SOURCE_DIR} "Quassel" quassel) + if(DEPLOY) + add_custom_command(TARGET quasselclient POST_BUILD + COMMAND ${CMAKE_SOURCE_DIR}/scripts/build/macosx_makePackage.sh Client) + add_custom_command(TARGET quasselcore POST_BUILD + COMMAND ${CMAKE_SOURCE_DIR}/scripts/build/macosx_makePackage.sh Core) + endif(DEPLOY) endif(APPLE) # Install rules