1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
|
# Evolution build script
cmake_minimum_required(VERSION 3.15)
cmake_policy(VERSION 3.15)
project(evolution
VERSION 3.56.2
LANGUAGES C)
set(PROJECT_BUGREPORT "https://gitlab.gnome.org/GNOME/evolution/issues/")
set(PROJECT_URL "https://gitlab.gnome.org/GNOME/evolution/-/wikis/home")
# Base Version: This is for API/version tracking for things like
# D-Bus server files. This should always be the major/minor of
# the stable version or stable version to be.
set(BASE_VERSION 3.56)
# Used for pkg-config files
set(INTERFACE_VERSION 3.0)
math(EXPR _is_devel_version "${PROJECT_VERSION_MINOR}%2")
if(_is_devel_version EQUAL 1)
math(EXPR _minor "${PROJECT_VERSION_MINOR}-1")
if(_minor EQUAL -1)
set(_minor 98)
math(EXPR _major "${PROJECT_VERSION_MAJOR}-1")
else(_minor EQUAL -1)
set(_major ${PROJECT_VERSION_MAJOR})
endif(_minor EQUAL -1)
set(STABLE_VERSION "${_major}.${_minor}")
set(APPDATA_RELEASE_TYPE "development")
else(_is_devel_version EQUAL 1)
unset(STABLE_VERSION)
set(APPDATA_RELEASE_TYPE "stable")
endif(_is_devel_version EQUAL 1)
# Required for FindIntltool module
set(GETTEXT_PACKAGE ${PROJECT_NAME})
set(GETTEXT_PO_DIR ${CMAKE_SOURCE_DIR}/po)
# Required for 'disttest' and 'distcheck' of DistTarget module
set(PROJECT_DISTCONFIGURE_PARAMS
-DENABLE_GTK_DOC=ON
-DENABLE_CONTACT_MAPS=ON
-DENABLE_INSTALLED_TESTS=ON
-DWITH_HELP=ON
-DWITH_GLADE_CATALOG=ON
)
# Keep these two definitions in agreement.
set(glib_minimum_version 2.70)
set(glib_encoded_version GLIB_VERSION_2_70)
# Keep these two definitions in agreement.
set(gdk_minimum_version 3.22)
set(gdk_encoded_version GDK_VERSION_3_22)
# Keep these two definitions in agreement.
set(soup_minimum_version 3.0)
set(soup_encoded_version SOUP_VERSION_3_0)
# Warn about API usage that violates our minimum requirements.
add_definitions(-DGLIB_VERSION_MAX_ALLOWED=${glib_encoded_version})
add_definitions(-DGDK_VERSION_MAX_ALLOWED=${gdk_encoded_version})
add_definitions(-DSOUP_VERSION_MAX_ALLOWED=${soup_encoded_version})
# These will suppress warnings about newly-deprecated symbols. Ideally
# these settings should match our minimum requirements and we will clean
# up any new deprecation warnings after bumping our minimum requirements.
# But if the warnings get to be overwhelming, use fixed versions instead.
add_definitions(-DGLIB_VERSION_MIN_REQUIRED=${glib_encoded_version})
add_definitions(-DGDK_VERSION_MIN_REQUIRED=${gdk_encoded_version})
add_definitions(-DSOUP_VERSION_MIN_REQUIRED=${soup_encoded_version})
set(eds_minimum_version ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
set(enchant1_minimum_version 1.6.0)
set(enchant2_minimum_version 2.2.0)
set(gdk_pixbuf_minimum_version 2.24.0)
set(gnome_desktop_minimum_version 2.91.3)
set(gsettings_desktop_schemas_minimum_version 2.91.92)
set(libpst_minimum_version 0.6.54)
set(libsecret_minimum_version 0.5)
set(libxml_minimum_version 2.7.3)
set(shared_mime_info_minimum_version 0.22)
set(webkit2gtk_minimum_version 2.34.0)
set(sqlite_minimum_version 3.7.17)
# Optional Packages
set(champlain_minimum_version 0.12.21)
set(clutter_gtk_minimum_version 0.90)
set(geocode_glib_minimum_version 3.26.3)
set(gladeui_minimum_version 3.10.0)
set(gnome_autoar_minimum_version 0.1.1)
set(gweather_minimum_version 3.91)
set(libcanberra_gtk_minimum_version 0.25)
set(libnotify_minimum_version 0.7)
set(libunity_minimum_version 7.1.4)
# Load modules from the source tree
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# Packagers might want to need different settings for the RPATH related things
# From experience, especially CMAKE_BUILD_WITH_INSTALL_RPATH might need to be
# switched to ON, if CMake fails to set the right values during make install
set(CMAKE_SKIP_RPATH OFF CACHE BOOL INTERNAL)
set(CMAKE_SKIP_BUILD_RPATH OFF CACHE BOOL INTERNAL)
set(CMAKE_BUILD_WITH_INSTALL_RPATH OFF CACHE BOOL INTERNAL)
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH ON CACHE BOOL INTERNAL)
# CMAKE_INSTALL_RPATH is set below
# CMake modules
include(CheckCCompilerFlag)
include(CheckCSourceCompiles)
include(CheckCSourceRuns)
include(CheckFunctionExists)
include(CheckIncludeFile)
include(CheckLibraryExists)
# Project custom modules
include(PrintableOptions)
add_printable_variable(LIB_SUFFIX "Library directory suffix, usually defined to '64' for x86_64 systems" "")
add_printable_variable_bare(CMAKE_INSTALL_PREFIX)
add_printable_variable_path(BIN_INSTALL_DIR "Install directory for binary files, defaults to CMAKE_INSTALL_PREFIX/bin" "")
add_printable_variable_path(INCLUDE_INSTALL_DIR "Install directory for header files, defaults to CMAKE_INSTALL_PREFIX/include" "")
add_printable_variable_path(LIB_INSTALL_DIR "Install directory for library files, defaults to CMAKE_INSTALL_PREFIX/lib{LIB_SUFFIX}" "")
add_printable_variable_path(LIBEXEC_INSTALL_DIR "Install directory for library executable files, defaults to CMAKE_INSTALL_PREFIX/libexec" "")
add_printable_variable_path(SHARE_INSTALL_PREFIX "Install directory for shared files, defaults to CMAKE_INSTALL_PREFIX/share" "")
add_printable_variable_path(LOCALE_INSTALL_DIR "Install directory for locale files, defaults to SHARE_INSTALL_PREFIX/locale" "")
add_printable_variable_path(SYSCONF_INSTALL_DIR "Install directory for system configuration files, defaults to CMAKE_INSTALL_PREFIX/etc" "")
add_printable_variable_path(MAN_INSTALL_DIR "Install directory for manual pages, defaults to SHARE_INSTALL_PREFIX/man" "")
macro(ensure_default_value _var _defvalue)
if(${_var} STREQUAL "")
set(${_var} ${_defvalue})
endif(${_var} STREQUAL "")
endmacro(ensure_default_value)
ensure_default_value(BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin")
ensure_default_value(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include")
ensure_default_value(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
ensure_default_value(LIBEXEC_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/libexec")
ensure_default_value(SHARE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/share")
ensure_default_value(LOCALE_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/locale")
ensure_default_value(SYSCONF_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/etc")
ensure_default_value(MAN_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/man")
# ******************************
# Special directories
# ******************************
# If you add something here, consider whether or not you also
# need to add it to one or more .pc.in files (for Connector, etc)
set(privdatadir "${SHARE_INSTALL_PREFIX}/${PROJECT_NAME}")
set(privincludedir "${INCLUDE_INSTALL_DIR}/${PROJECT_NAME}")
set(privlibdir "${LIB_INSTALL_DIR}/${PROJECT_NAME}")
set(privlibexecdir "${LIBEXEC_INSTALL_DIR}/${PROJECT_NAME}")
SET(CMAKE_INSTALL_RPATH "${privlibdir}")
if(WIN32)
# On Win32 there is no "rpath" mechanism. We install the private
# shared libraries in $libdir, meaning the DLLs will actually be in
# $bindir. This means just having $bindir in PATH will be enough.
set(privsolibdir "${LIB_INSTALL_DIR}")
else(WIN32)
set(privsolibdir "${privlibdir}")
endif(WIN32)
set(errordir "${privdatadir}/errors")
set(etspecdir "${privdatadir}/etspec")
set(evolutionhelpdir "${privdatadir}/help")
set(icondir "${privdatadir}/icons")
set(imagesdir "${privdatadir}/images")
set(moduledir "${privlibdir}/modules")
set(plugindir "${privlibdir}/plugins")
set(soundsdir "${privdatadir}/sounds")
set(uidir "${privdatadir}/ui")
set(viewsdir "${privdatadir}/views")
set(webkitdatadir "${privdatadir}/webkit")
set(webextensionsdir "${privlibdir}/web-extensions")
set(webextensionswebkiteditordir "${webextensionsdir}/webkit-editor")
# ******************************
# Dependencies
# ******************************
include(CodeCoverageGCOV)
include(CheckTarget)
include(DistTargets)
include(EvolutionMacros)
include(GLibTools)
include(GtkDoc)
include(IconCache)
include(InstalledTests)
include(PkgConfigEx)
include(SetupBuildFlags)
include(UninstallTarget)
include(FindIntltool)
include(FindLDAP)
include(FindSMIME)
# hidden option, usually not usable
option(OVERRIDE_APPLICATION_ID "Override application ID" "")
if(OVERRIDE_APPLICATION_ID STREQUAL "")
unset(OVERRIDE_APPLICATION_ID)
endif(OVERRIDE_APPLICATION_ID STREQUAL "")
add_printable_option(ENABLE_MAINTAINER_MODE "Enable maintainer mode" OFF)
add_printable_variable(VERSION_SUBSTRING "Version substring, for packagers" "")
add_printable_variable(VERSION_COMMENT "Define if you want a comment appended to the version number" "")
if(ENABLE_MAINTAINER_MODE)
set(BUILD_TESTING ON)
endif(ENABLE_MAINTAINER_MODE)
# Setup compiler/linker flags
setup_build_flags(${ENABLE_MAINTAINER_MODE})
set(MATH_LDFLAGS -lm)
CHECK_INCLUDE_FILE(sys/wait.h HAVE_SYS_WAIT_H)
CHECK_FUNCTION_EXISTS(nl_langinfo HAVE_NL_LANGINFO)
# ******************************
# Check for nl_langinfo features
# ******************************
CHECK_C_SOURCE_COMPILES("#include <langinfo.h>
int main(void) { char *detail = nl_langinfo (_NL_MEASUREMENT_MEASUREMENT); return 0; }" HAVE__NL_MEASUREMENT_MEASUREMENT)
# ******************************
# Dependencies
# ******************************
if(WIN32)
set(GIO_UNIX_REQUIREMENT "gio-windows-2.0")
else(WIN32)
set(GIO_UNIX_REQUIREMENT "gio-unix-2.0")
endif(WIN32)
add_printable_option(ENABLE_ALARM_NOTIFY_MODULE "Enable the 'alarm-notify' module" ON)
add_printable_option(ENABLE_GNOME_DESKTOP "Enable GNOME desktop dependency for thumbnails" ON)
if(ENABLE_GNOME_DESKTOP)
set(GNOME_DESKTOP_DEPENDENCY "gnome-desktop-3.0")
set(HAVE_GNOME_DESKTOP ON)
# It's checked for it twice, this one gives a hint to disable the dependency if not found
pkg_check_modules_for_option(ENABLE_GNOME_DESKTOP "GNOME desktop dependency for thumbnails" GNOME_DESKTOP ${GNOME_DESKTOP_DEPENDENCY}>=${gnome_desktop_minimum_version})
else(ENABLE_GNOME_DESKTOP)
set(GNOME_DESKTOP_DEPENDENCY "")
set(HAVE_GNOME_DESKTOP OFF)
endif(ENABLE_GNOME_DESKTOP)
pkg_check_modules(GNOME_PLATFORM REQUIRED
cairo-gobject
gail-3.0>=${gdk_minimum_version}
gdk-pixbuf-2.0>=${gdk_pixbuf_minimum_version}
gio-2.0>=${glib_minimum_version}
${GIO_UNIX_REQUIREMENT}
gmodule-2.0>=${glib_minimum_version}
${GNOME_DESKTOP_DEPENDENCY}
gsettings-desktop-schemas>=${gsettings_desktop_schemas_minimum_version}
gtk+-3.0>=${gdk_minimum_version}
libxml-2.0>=${libxml_minimum_version}
shared-mime-info>=${shared_mime_info_minimum_version}
webkit2gtk-4.1>=${webkit2gtk_minimum_version}
)
pkg_check_modules(EVOLUTION_DATA_SERVER REQUIRED
camel-1.2>=${eds_minimum_version}
libebook-1.2>=${eds_minimum_version}
libecal-2.0>=${eds_minimum_version}
libedataserver-1.2>=${eds_minimum_version}
libedataserverui-1.2>=${eds_minimum_version}
libebackend-1.2>=${eds_minimum_version}
)
pkg_check_modules(A11Y REQUIRED atk)
pkg_check_modules(LIBSECRET REQUIRED libsecret-1>=${libsecret_minimum_version})
pkg_check_modules(LIBSOUP REQUIRED libsoup-3.0>=${soup_minimum_version})
pkg_check_modules(WEB_EXTENSION REQUIRED webkit2gtk-4.1>=${webkit2gtk_minimum_version})
pkg_check_modules(SQLITE3 REQUIRED sqlite3>=${sqlite_minimum_version})
pkg_check_variable(EDS_SOURCES_DBUS_SERVICE_NAME evolution-data-server-1.2 sourcesdbusservicename)
pkg_check_variable(E_DATA_SERVER_ICONDIR evolution-data-server-1.2 icondir)
# ******************************
# Enchant - support both, but better to use the same as the dependencies (gspell, webkitgtk+,...)
# ******************************
add_printable_variable(WITH_ENCHANT_VERSION "Set Enchant version to use" "auto")
set(enchant_version_values auto 1 2)
set_property(CACHE WITH_ENCHANT_VERSION PROPERTY STRINGS ${enchant_version_values})
if(WITH_ENCHANT_VERSION STREQUAL "1")
pkg_check_modules(ENCHANT REQUIRED enchant>=${enchant1_minimum_version})
else(WITH_ENCHANT_VERSION STREQUAL "1")
if(WITH_ENCHANT_VERSION STREQUAL "2")
pkg_check_modules(ENCHANT REQUIRED enchant-2>=${enchant2_minimum_version})
else(WITH_ENCHANT_VERSION STREQUAL "2")
pkg_check_modules(ENCHANT enchant>=${enchant1_minimum_version})
if(ENCHANT_FOUND)
set(WITH_ENCHANT_VERSION "auto (enchant-1)")
else(ENCHANT_FOUND)
unset(ENCHANT_FOUND)
pkg_check_modules(ENCHANT enchant-2>=${enchant2_minimum_version})
if(ENCHANT_FOUND)
set(WITH_ENCHANT_VERSION "auto (enchant-2)")
else(ENCHANT_FOUND)
message(FATAL_ERROR "Cannot find enchant 1 neither enchant 2, or new-enough version. Install either of them "
"or specify which to use with -DWITH_ENCHANT_VERSION=auto|1|2, where 'auto' is the default")
endif(ENCHANT_FOUND)
endif(ENCHANT_FOUND)
endif(WITH_ENCHANT_VERSION STREQUAL "2")
endif(WITH_ENCHANT_VERSION STREQUAL "1")
# ******************************
# Canberra / Canberra-GTK Sound
# ******************************
add_printable_option(ENABLE_CANBERRA "Enable Canberra and Canberra-GTK sound" ON)
if(ENABLE_CANBERRA)
pkg_check_modules_for_option(ENABLE_CANBERRA "Canberra and Canberra-GTK sound" CANBERRA libcanberra-gtk3>=${libcanberra_gtk_minimum_version})
set(HAVE_CANBERRA ON)
endif(ENABLE_CANBERRA)
# ******************************
# Archives Integration / gnome-autoar
# ******************************
add_printable_option(ENABLE_AUTOAR "Enable archives support in attachments" ON)
if(ENABLE_AUTOAR)
pkg_check_modules_for_option(ENABLE_AUTOAR "archives support in attachments" AUTOAR
gnome-autoar-0>=${gnome_autoar_minimum_version}
gnome-autoar-gtk-0>=${gnome_autoar_minimum_version}
)
set(HAVE_AUTOAR ON)
endif(ENABLE_AUTOAR)
# ******************************
# User Documentation
# ******************************
add_printable_option(WITH_HELP "Build user documentation" ON)
if(WITH_HELP)
find_program(ITSTOOL itstool)
if(NOT ITSTOOL)
message(FATAL_ERROR "Cannot find itstool, either install it or disable help build by adding -DWITH_HELP=OFF argument to cmake command")
endif(NOT ITSTOOL)
endif(WITH_HELP)
# ******************************
# iconv checking
# ******************************
set(CMAKE_REQUIRED_LIBRARIES "-liconv")
CHECK_C_SOURCE_COMPILES("#include <iconv.h>
#include <stdlib.h>
int main(void) { iconv_t cd; cd = iconv_open (\"UTF-8\", \"ISO-8859-1\"); return 0; }" HAVE_LIBICONV)
unset(CMAKE_REQUIRED_LIBRARIES)
if(HAVE_LIBICONV)
set(ICONV_LIBS "-liconv")
set(HAVE_ICONV ON)
else(HAVE_LIBICONV)
set(ICONV_LIBS "")
CHECK_FUNCTION_EXISTS(iconv HAVE_ICONV)
endif(HAVE_LIBICONV)
if(NOT HAVE_ICONV)
message(FATAL_ERROR "You need to install a working iconv implementation, such as ftp://ftp.gnu.org/pub/gnu/libiconv")
endif(NOT HAVE_ICONV)
set(CMAKE_REQUIRED_LIBRARIES ${ICONV_LIBS})
file(TO_NATIVE_PATH "${CMAKE_BINARY_DIR}/" _binary_dir_with_separator)
CHECK_C_SOURCE_RUNS("#define ICONV_DETECT_BUILD_DIR \"${_binary_dir_with_separator}\"
#include \"${CMAKE_SOURCE_DIR}/iconv-detect.c\"" _correct_iconv)
unset(_binary_dir_with_separator)
unset(CMAKE_REQUIRED_LIBRARIES)
if(NOT _correct_iconv)
message(FATAL_ERROR "You need to install a working iconv implementation, such as ftp://ftp.gnu.org/pub/gnu/libiconv")
endif(NOT _correct_iconv)
# ******************************
# Timezone checks
# ******************************
CHECK_C_SOURCE_COMPILES("#include <time.h>
int main(void) { struct tm tm; tm.tm_gmtoff = 1; return 0; }" HAVE_TM_GMTOFF)
CHECK_C_SOURCE_COMPILES("#include <time.h>
int main(void) { timezone = 1; return 0; }" HAVE_TIMEZONE)
CHECK_C_SOURCE_COMPILES("#include <time.h>
int main(void) { altzone = 1; return 0; }" HAVE_ALTZONE)
if((NOT HAVE_TM_GMTOFF) AND (NOT HAVE_TIMEZONE))
message(FATAL_ERROR "Unable to find a way to determine timezone")
endif((NOT HAVE_TM_GMTOFF) AND (NOT HAVE_TIMEZONE))
# ******************************
# iso-codes
# ******************************
pkg_check_exists(HAVE_ISO_CODES iso-codes)
if(HAVE_ISO_CODES)
pkg_check_at_least_version(HAVE_ISO_CODES iso-codes 0.49)
if(HAVE_ISO_CODES)
pkg_check_variable(_iso_codes_domains iso-codes domains)
if(NOT ((_iso_codes_domains MATCHES "639") AND (_iso_codes_domains MATCHES "3166")))
message(WARNING "iso-codes detected, but either iso-639 or iso-3166 domains not found in '${_iso_codes_domains}'")
set(HAVE_ISO_CODES OFF)
else()
pkg_check_variable(ISO_CODES_PREFIX iso-codes prefix)
endif()
else(HAVE_ISO_CODES)
set(HAVE_ISO_CODES OFF)
message(WARNING "iso-codes detected, but version 0.49 or later is required due to licensing")
endif(HAVE_ISO_CODES)
endif(HAVE_ISO_CODES)
# ******************************
# TNEF implementation
# ******************************
add_printable_option(ENABLE_YTNEF "Enable yTNEF library usage" ON)
if(ENABLE_YTNEF)
set(TNEF_LDFLAGS -lytnef)
set(CMAKE_REQUIRED_LIBRARIES ${TNEF_LDFLAGS})
CHECK_C_SOURCE_COMPILES("#include <stdio.h>
#include <ytnef.h>
int main(void) { TNEFStruct *tnef; return 0; }" HAVE_YTNEF_H)
if(NOT HAVE_YTNEF_H)
CHECK_C_SOURCE_COMPILES("#include <stdio.h>
#include <libytnef/ytnef.h>
int main(void) { TNEFStruct *tnef; return 0; }" HAVE_LIBYTNEF_YTNEF_H)
endif(NOT HAVE_YTNEF_H)
unset(CMAKE_REQUIRED_LIBRARIES)
if((NOT HAVE_YTNEF_H) AND (NOT HAVE_LIBYTNEF_YTNEF_H))
message(FATAL_ERROR "Cannot find ytnef library, either install it or disable use of it by adding -DENABLE_YTNEF=OFF argument to cmake command")
endif((NOT HAVE_YTNEF_H) AND (NOT HAVE_LIBYTNEF_YTNEF_H))
endif(ENABLE_YTNEF)
# ******************************
# Bogofilter (spam filter)
# ******************************
add_printable_variable_filepath(WITH_BOGOFILTER "Enable spam filtering using Bogofilter (defaults to /usr/bin/bogofilter, if not found with 'auto')" "auto")
string(LENGTH "${CMAKE_BINARY_DIR}" bindirlen)
string(LENGTH "${WITH_BOGOFILTER}" maxlen)
if(maxlen LESS bindirlen)
set(substr "***")
else(maxlen LESS bindirlen)
string(SUBSTRING "${WITH_BOGOFILTER}" 0 ${bindirlen} substr)
endif(maxlen LESS bindirlen)
string(TOUPPER "${WITH_BOGOFILTER}" optupper)
set(BOGOFILTER_COMMAND "")
if(("${optupper}" STREQUAL "ON") OR ("${optupper}" STREQUAL "AUTO") OR ("${substr}" STREQUAL "${CMAKE_BINARY_DIR}"))
set(WITH_BOGOFILTER ON)
elseif(("${optupper}" STREQUAL "OFF") OR ("${optupper}" STREQUAL "NO") OR ("${optupper}" STREQUAL ""))
set(WITH_BOGOFILTER OFF)
else()
set(BOGOFILTER_COMMAND "${WITH_BOGOFILTER}")
set(WITH_BOGOFILTER ON)
endif()
if(WITH_BOGOFILTER)
if(BOGOFILTER_COMMAND STREQUAL "")
set(BOGOFILTER_COMMAND "$ENV{BOGOFILTER}")
endif(BOGOFILTER_COMMAND STREQUAL "")
if(BOGOFILTER_COMMAND STREQUAL "")
unset(BOGOFILTER_COMMAND)
find_program(BOGOFILTER_COMMAND bogofilter)
if(NOT BOGOFILTER_COMMAND)
set(BOGOFILTER_COMMAND "/usr/bin/bogofilter")
endif(NOT BOGOFILTER_COMMAND)
endif(BOGOFILTER_COMMAND STREQUAL "")
set(WITH_BOGOFILTER ${BOGOFILTER_COMMAND})
endif(WITH_BOGOFILTER)
unset(bindirlen)
unset(maxlen)
unset(substr)
unset(optupper)
# ******************************
# SpamAssassin (spam filter)
# ******************************
add_printable_variable_filepath(WITH_SPAMASSASSIN "Enable spam filtering using SpamAssassin (defaults to /usr/bin/spamassassin, if not found with 'auto')" "auto")
add_printable_variable_filepath(WITH_SA_LEARN "Full path command where sa-learn is located (defaults to /usr/bin/sa-learn, if not found with 'auto')" "auto")
string(LENGTH "${CMAKE_BINARY_DIR}" bindirlen)
string(LENGTH "${WITH_SPAMASSASSIN}" maxlen)
if(maxlen LESS bindirlen)
set(substr "***")
else(maxlen LESS bindirlen)
string(SUBSTRING "${WITH_SPAMASSASSIN}" 0 ${bindirlen} substr)
endif(maxlen LESS bindirlen)
string(TOUPPER "${WITH_SPAMASSASSIN}" optupper)
set(SPAMASSASSIN_COMMAND "")
if(("${optupper}" STREQUAL "ON") OR ("${optupper}" STREQUAL "AUTO") OR ("${substr}" STREQUAL "${CMAKE_BINARY_DIR}"))
set(WITH_SPAMASSASSIN ON)
elseif(("${optupper}" STREQUAL "OFF") OR ("${optupper}" STREQUAL "NO") OR ("${optupper}" STREQUAL ""))
set(WITH_SPAMASSASSIN OFF)
set(WITH_SA_LEARN OFF)
else()
set(SPAMASSASSIN_COMMAND "${WITH_SPAMASSASSIN}")
set(WITH_SPAMASSASSIN ON)
endif()
if(WITH_SPAMASSASSIN)
if(SPAMASSASSIN_COMMAND STREQUAL "")
set(SPAMASSASSIN_COMMAND "$ENV{SPAMASSASSIN}")
endif(SPAMASSASSIN_COMMAND STREQUAL "")
if(SPAMASSASSIN_COMMAND STREQUAL "")
unset(SPAMASSASSIN_COMMAND)
find_program(SPAMASSASSIN_COMMAND spamassassin)
if(NOT SPAMASSASSIN_COMMAND)
set(SPAMASSASSIN_COMMAND "/usr/bin/spamassassin")
endif(NOT SPAMASSASSIN_COMMAND)
endif(SPAMASSASSIN_COMMAND STREQUAL "")
string(LENGTH "${WITH_SA_LEARN}" maxlen)
if(maxlen LESS bindirlen)
set(substr "***")
else(maxlen LESS bindirlen)
string(SUBSTRING "${WITH_SA_LEARN}" 0 ${bindirlen} substr)
endif(maxlen LESS bindirlen)
string(TOUPPER "${WITH_SA_LEARN}" optupper)
set(SA_LEARN_COMMAND "")
if(("${optupper}" STREQUAL "ON") OR ("${optupper}" STREQUAL "AUTO") OR ("${substr}" STREQUAL "${CMAKE_BINARY_DIR}"))
set(WITH_SA_LEARN ON)
elseif(("${optupper}" STREQUAL "OFF") OR ("${optupper}" STREQUAL "NO") OR ("${optupper}" STREQUAL ""))
set(WITH_SA_LEARN OFF)
else()
set(SA_LEARN_COMMAND "${WITH_SA_LEARN}")
set(WITH_SA_LEARN ON)
endif()
if(SA_LEARN_COMMAND STREQUAL "")
set(SA_LEARN_COMMAND "$ENV{SA_LEARN}")
endif(SA_LEARN_COMMAND STREQUAL "")
if(SA_LEARN_COMMAND STREQUAL "")
unset(SA_LEARN_COMMAND)
find_program(SA_LEARN_COMMAND sa-learn)
if(NOT SA_LEARN_COMMAND)
set(SA_LEARN_COMMAND "/usr/bin/sa-learn")
endif(NOT SA_LEARN_COMMAND)
endif(SA_LEARN_COMMAND STREQUAL "")
set(WITH_SPAMASSASSIN ${SPAMASSASSIN_COMMAND})
set(WITH_SA_LEARN ${SA_LEARN_COMMAND})
endif(WITH_SPAMASSASSIN)
unset(bindirlen)
unset(maxlen)
unset(substr)
unset(optupper)
# ******************************
# CERT_UI Flags
# ******************************
#
# Here we want the Mozilla flags to go *before* the other ones,
# especially the mozilla-nss -I flags to go before the gnutls ones,
# as both gnutls and mozilla-nss have a header called "pkcs12.h" which is
# included in smime/lib/e-pkcs12.c. It wants the Mozilla NSS one.
if((NOT (mozilla_nspr STREQUAL "")) AND (NOT (mozilla_nss STREQUAL "")))
pkg_check_modules(CERT_UI REQUIRED ${mozilla_nspr} ${mozilla_nss})
else((NOT (mozilla_nspr STREQUAL "")) AND (NOT (mozilla_nss STREQUAL "")))
set(CERT_UI_INCLUDE_DIRS ${MANUAL_NSPR_INCLUDES} ${MANUAL_NSS_INCLUDES})
set(CERT_UI_LDFLAGS ${MANUAL_NSPR_LIBS} ${MANUAL_NSS_LIBS})
endif((NOT (mozilla_nspr STREQUAL "")) AND (NOT (mozilla_nss STREQUAL "")))
# ******************************
# Libnotify
# ******************************
pkg_check_modules(LIBNOTIFY libnotify>=${libnotify_minimum_version})
set(HAVE_LIBNOTIFY ${LIBNOTIFY_FOUND})
# ******************************
# Libunity
# ******************************
pkg_check_modules(LIBUNITY unity>=${libunity_minimum_version})
set(HAVE_LIBUNITY ${LIBUNITY_FOUND})
# ******************************
# gspell
# ******************************
add_printable_option(ENABLE_GSPELL "Enable gspell usage" ON)
if(ENABLE_GSPELL)
pkg_check_modules_for_option(ENABLE_GSPELL "gspell usage" GSPELL gspell-1)
set(HAVE_GSPELL ON)
endif(ENABLE_GSPELL)
# ******************************
# gnu_get_libc_version()
# ******************************
CHECK_C_SOURCE_COMPILES("#include <gnu/libc-version.h>
int main(void) { const char *libc_version = gnu_get_libc_version (); return 0; }" HAVE_GNU_GET_LIBC_VERSION)
# ******************************
# Plugins
# ******************************
add_printable_variable(ENABLE_PLUGINS "Enable plugins (no/base/all)" "all")
set(plugins_values all base no)
set_property(CACHE ENABLE_PLUGINS PROPERTY STRINGS ${plugins_values})
set(plugins_base
publish-calendar
)
set(plugins_standard
attachment-reminder
bbdb
dbx-import
email-custom-header
external-editor
face
mail-to-task
mailing-list-actions
mail-notification
save-calendar
sender-validation
templates
)
# ******************************************************************
# The following plugins have additional library dependencies.
# They must be explicitly disabled if the libraries are not present.
# ******************************************************************
# text-highlight
add_printable_option(ENABLE_TEXT_HIGHLIGHT "Enable text-highlight plugin" ON)
if(ENABLE_TEXT_HIGHLIGHT)
find_program(HIGHLIGHT_COMMAND highlight)
if(NOT HIGHLIGHT_COMMAND)
message(FATAL_ERROR "The 'highlight' program not found; either give it into PATH or disable higlight plugin with -DENABLE_TEXT_HIGHLIGHT=OFF")
endif(NOT HIGHLIGHT_COMMAND)
endif(ENABLE_TEXT_HIGHLIGHT)
# weather calendar
add_printable_option(ENABLE_WEATHER "Enable weather calendars" ON)
if(ENABLE_WEATHER)
pkg_check_modules_for_option(ENABLE_WEATHER "weather calendar" GWEATHER gweather4>=${gweather_minimum_version})
pkg_check_modules_for_option(ENABLE_WEATHER "weather calendar" GEO geocode-glib-2.0>=${geocode_glib_minimum_version})
# compatibility check
pkg_check_variable(gweather_soupapiversion gweather4 soupapiversion)
if(NOT "${gweather_soupapiversion}" STREQUAL "3.0")
message(FATAL_ERROR "Requires libgweather compiled with libsoup 3.0 API, but found version '${gweather_soupapiversion}' instead. If you want to disable weather calendar, please use -DENABLE_WEATHER=OFF argument to cmake command.")
endif(NOT "${gweather_soupapiversion}" STREQUAL "3.0")
unset(gweather_soupapiversion)
pkg_check_variable(geocode_glib_soupapiversion geocode-glib-2.0 soupapiversion)
if(NOT "${geocode_glib_soupapiversion}" STREQUAL "3.0")
message(FATAL_ERROR "Requires geocode-glib compiled with libsoup 3.0 API, but found version '${geocode_glib_soupapiversion}' instead. If you want to disable weather calendar, please use -DENABLE_WEATHER=OFF argument to cmake command.")
endif(NOT "${geocode_glib_soupapiversion}" STREQUAL "3.0")
unset(geocode_glib_soupapiversion)
endif(ENABLE_WEATHER)
# maps in Contacts preview
add_printable_option(ENABLE_CONTACT_MAPS "Enable contact maps" OFF)
if(ENABLE_CONTACT_MAPS)
pkg_check_modules_for_option(ENABLE_CONTACT_MAPS "contact maps" CHAMPLAIN champlain-gtk-0.12>=${champlain_minimum_version})
pkg_check_modules_for_option(ENABLE_CONTACT_MAPS "contact maps" GEO geocode-glib-2.0>=${geocode_glib_minimum_version})
pkg_check_modules_for_option(ENABLE_CONTACT_MAPS "contact maps" CLUTTER_GTK clutter-gtk-1.0>=${clutter_gtk_minimum_version})
pkg_check_variable(champlain_soupapiversion champlain-0.12 soupapiversion)
if(NOT "${champlain_soupapiversion}" STREQUAL "3.0")
message(FATAL_ERROR "Requires libchamplain compiled with libsoup 3.0 API, but found version '${champlain_soupapiversion}' instead. If you want to disable contact maps, please use -DENABLE_CONTACT_MAPS=OFF argument to cmake command.")
endif(NOT "${champlain_soupapiversion}" STREQUAL "3.0")
unset(champlain_soupapiversion)
pkg_check_variable(geocode_glib_soupapiversion geocode-glib-2.0 soupapiversion)
if(NOT "${geocode_glib_soupapiversion}" STREQUAL "3.0")
message(FATAL_ERROR "Requires geocode-glib compiled with libsoup 3.0 API, but found version '${geocode_glib_soupapiversion}' instead. If you want to disable contact maps, please use -DENABLE_CONTACT_MAPS=OFF argument to cmake command.")
endif(NOT "${geocode_glib_soupapiversion}" STREQUAL "3.0")
unset(geocode_glib_soupapiversion)
endif(ENABLE_CONTACT_MAPS)
# pst-import plugin
add_printable_option(ENABLE_PST_IMPORT "Enable pst-import plugin" ON)
if(ENABLE_PST_IMPORT)
pkg_check_modules_for_option(ENABLE_PST_IMPORT "pst-import plugin" LIBPST libpst>=${libpst_minimum_version})
list(APPEND plugins_standard pst-import)
endif(ENABLE_PST_IMPORT)
# Finish plugins build setup
set(build_plugins)
if(ENABLE_PLUGINS STREQUAL "" OR ENABLE_PLUGINS STREQUAL "all")
set(build_plugins ${plugins_base} ${plugins_standard})
elseif(ENABLE_PLUGINS STREQUAL "base")
set(build_plugins ${plugins_base})
elseif(NOT ENABLE_PLUGINS STREQUAL "no")
message(FATAL_ERROR "Incorrect value for ENABLE_PLUGINS (${ENABLE_PLUGINS}), use either \"no\", or \"base\" or \"all\" value")
endif()
# ******************************
# Glade catalog
# ******************************
add_printable_option(WITH_GLADE_CATALOG "Install the catalog files for Glade 3 (for maintainers only)" OFF)
if(WITH_GLADE_CATALOG)
pkg_check_modules_for_option(WITH_GLADE_CATALOG "Glade 3 catalog files" GLADEUI gladeui-2.0>=${gladeui_minimum_version})
endif(WITH_GLADE_CATALOG)
# ******************************
# cmark for CommonMarkdown
# ******************************
add_printable_option(ENABLE_MARKDOWN "Enable markdown support" ON)
if(ENABLE_MARKDOWN)
pkg_check_modules_for_option(ENABLE_MARKDOWN "markdown support" MARKDOWN
libcmark
)
set(HAVE_MARKDOWN ON)
endif(ENABLE_MARKDOWN)
# ******************************
# libical-glib API changes
# ******************************
set(CMAKE_REQUIRED_DEFINITIONS ${EVOLUTION_DATA_SERVER_CFLAGS})
set(CMAKE_REQUIRED_INCLUDES ${EVOLUTION_DATA_SERVER_INCLUDE_DIRS})
set(CMAKE_REQUIRED_LIBRARIES ${EVOLUTION_DATA_SERVER_LDFLAGS})
CHECK_C_SOURCE_COMPILES("#define LIBICAL_GLIB_UNSTABLE_API 1
#include <libical-glib/libical-glib.h>
int main(void) {
i_cal_recurrence_get_by (NULL, I_CAL_BY_MONTH, 0);
return 0;
}" HAVE_I_CAL_RECURRENCE_GET_BY)
unset(CMAKE_REQUIRED_DEFINITIONS)
unset(CMAKE_REQUIRED_INCLUDES)
unset(CMAKE_REQUIRED_LIBRARIES)
# ******************************
# news-to-appdata
# ******************************
set(CMAKE_REQUIRED_DEFINITIONS ${GNOME_PLATFORM_CFLAGS})
set(CMAKE_REQUIRED_INCLUDES ${GNOME_PLATFORM_INCLUDE_DIRS})
set(CMAKE_REQUIRED_LIBRARIES ${GNOME_PLATFORM_LDFLAGS})
file(TO_NATIVE_PATH "${CMAKE_BINARY_DIR}/appdata-releases.txt" _output_filename)
file(TO_NATIVE_PATH "${CMAKE_SOURCE_DIR}/NEWS" _news_filename)
CHECK_C_SOURCE_RUNS("#define BUILD_RUN 1
#define BUILD_OUTPUT \"${_output_filename}\"
#define BUILD_TYPE \"${APPDATA_RELEASE_TYPE}\"
#define BUILD_VERSION \"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}\"
#define BUILD_NEWS_FILE \"${_news_filename}\"
#include \"${CMAKE_SOURCE_DIR}/news-to-appdata.c\"" _news_to_appdata_result)
unset(_news_filename)
unset(_output_filename)
unset(CMAKE_REQUIRED_LIBRARIES)
unset(CMAKE_REQUIRED_INCLUDES)
unset(CMAKE_REQUIRED_DEFINITIONS)
if(NOT "${_news_to_appdata_result}" EQUAL "1")
message(FATAL_ERROR "Failed to run news-to-appdata")
endif(NOT "${_news_to_appdata_result}" EQUAL "1")
# Generate the ${PROJECT_NAME}-config.h file
CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/config.h.in ${CMAKE_BINARY_DIR}/${PROJECT_NAME}-config.h)
print_build_options()
# The shell_private_requirements is used by the evolution-shell.pc.in
if(ENABLE_GNOME_DESKTOP)
set(shell_private_requirements "Requires.private: ${GNOME_DESKTOP_DEPENDENCY}")
else(ENABLE_GNOME_DESKTOP)
set(shell_private_requirements "")
endif(ENABLE_GNOME_DESKTOP)
# The shell_privlibdir_rpath_flags is used by the evolution-shell.pc.in
# and if set, then should be preceded with a space.
if(NOT WIN32)
set(shell_privlibdir_rpath_flags " -Wl,-R${privlibdir}")
endif(NOT WIN32)
add_pkgconfig_file(evolution-calendar.pc.in evolution-calendar-${INTERFACE_VERSION}.pc)
add_pkgconfig_file(evolution-mail.pc.in evolution-mail-${INTERFACE_VERSION}.pc)
add_pkgconfig_file(evolution-shell.pc.in evolution-shell-${INTERFACE_VERSION}.pc)
add_subdirectory(data)
add_subdirectory(po)
add_subdirectory(src)
add_subdirectory(tests)
if(WITH_HELP)
add_subdirectory(help)
endif(WITH_HELP)
# Add it as the last, because it looks for targets defined above
add_subdirectory(docs)
|