![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tests/poppler/cmake/modules/ |
Upload File : |
# - try to find Cairo # Once done this will define # # CAIRO_FOUND - system has Cairo # CAIRO_CFLAGS - the Cairo CFlags # CAIRO_INCLUDE_DIRS - the Cairo include directories # CAIRO_LIBRARIES - Link these to use Cairo # # Copyright (C) 2007, 2010, Pino Toscano, <pino@kde.org> # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. if(CAIRO_INCLUDE_DIRS AND CAIRO_LIBRARIES) # in cache already set(CAIRO_FOUND TRUE) else(CAIRO_INCLUDE_DIRS AND CAIRO_LIBRARIES) if(NOT WIN32) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls find_package(PkgConfig REQUIRED) if(Cairo_FIND_VERSION_COUNT GREATER 0) set(_cairo_version_cmp ">=${Cairo_FIND_VERSION}") endif(Cairo_FIND_VERSION_COUNT GREATER 0) pkg_check_modules(_pc_cairo cairo${_cairo_version_cmp}) if(_pc_cairo_FOUND) set(CAIRO_FOUND TRUE) endif(_pc_cairo_FOUND) else(NOT WIN32) # assume so, for now set(CAIRO_FOUND TRUE) endif(NOT WIN32) if(CAIRO_FOUND) # set it back as false set(CAIRO_FOUND FALSE) find_library(CAIRO_LIBRARY cairo HINTS ${_pc_cairo_LIBRARY_DIRS} ) set(CAIRO_LIBRARIES "${CAIRO_LIBRARY}") find_path(CAIRO_INCLUDE_DIR cairo.h HINTS ${_pc_cairo_INCLUDE_DIRS} PATH_SUFFIXES cairo ) set(CAIRO_INCLUDE_DIRS "${CAIRO_INCLUDE_DIR}") include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Cairo DEFAULT_MSG CAIRO_LIBRARIES CAIRO_INCLUDE_DIRS) endif(CAIRO_FOUND) endif(CAIRO_INCLUDE_DIRS AND CAIRO_LIBRARIES) mark_as_advanced( CAIRO_CFLAGS CAIRO_INCLUDE_DIRS CAIRO_LIBRARIES )