mirror of https://github.com/procxx/kepka.git
git subrepo clone https://github.com/procxx/cmake-modules.git modules
subrepo: subdir: "modules" merged: "b6fbaff17" upstream: origin: "https://github.com/procxx/cmake-modules.git" branch: "master" commit: "b6fbaff17" git-subrepo: version: "0.3.1" origin: "???" commit: "???"
This commit is contained in:
parent
ce75c9e7dd
commit
b26e1c084d
|
@ -0,0 +1,11 @@
|
||||||
|
; DO NOT EDIT (unless you know what you are doing)
|
||||||
|
;
|
||||||
|
; This subdirectory is a git "subrepo", and this file is maintained by the
|
||||||
|
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
|
||||||
|
;
|
||||||
|
[subrepo]
|
||||||
|
remote = https://github.com/procxx/cmake-modules.git
|
||||||
|
branch = master
|
||||||
|
commit = b6fbaff17a6ee19d4ec54c2b067a6bfee9c705dd
|
||||||
|
parent = 12e8ff6cf87c38276c07190558755e239d92f3b8
|
||||||
|
cmdver = 0.3.1
|
|
@ -0,0 +1,154 @@
|
||||||
|
# from https://github.com/snikulov/cmake-modules/blob/master/FindFFmpeg.cmake
|
||||||
|
#
|
||||||
|
# vim: ts=2 sw=2
|
||||||
|
# - Try to find the required ffmpeg components(default: AVFORMAT, AVUTIL, AVCODEC)
|
||||||
|
#
|
||||||
|
# Once done this will define
|
||||||
|
# FFMPEG_FOUND - System has the all required components.
|
||||||
|
# FFMPEG_INCLUDE_DIRS - Include directory necessary for using the required components headers.
|
||||||
|
# FFMPEG_LIBRARIES - Link these to use the required ffmpeg components.
|
||||||
|
# FFMPEG_DEFINITIONS - Compiler switches required for using the required ffmpeg components.
|
||||||
|
#
|
||||||
|
# For each of the components it will additionally set.
|
||||||
|
# - AVCODEC
|
||||||
|
# - AVDEVICE
|
||||||
|
# - AVFORMAT
|
||||||
|
# - AVFILTER
|
||||||
|
# - AVUTIL
|
||||||
|
# - POSTPROC
|
||||||
|
# - SWSCALE
|
||||||
|
# - SWRESAMPLE
|
||||||
|
# the following variables will be defined
|
||||||
|
# <component>_FOUND - System has <component>
|
||||||
|
# <component>_INCLUDE_DIRS - Include directory necessary for using the <component> headers
|
||||||
|
# <component>_LIBRARIES - Link these to use <component>
|
||||||
|
# <component>_DEFINITIONS - Compiler switches required for using <component>
|
||||||
|
# <component>_VERSION - The components version
|
||||||
|
#
|
||||||
|
# Copyright (c) 2006, Matthias Kretz, <kretz@kde.org>
|
||||||
|
# Copyright (c) 2008, Alexander Neundorf, <neundorf@kde.org>
|
||||||
|
# Copyright (c) 2011, Michael Jansen, <kde@michael-jansen.biz>
|
||||||
|
#
|
||||||
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
||||||
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
|
||||||
|
# The default components were taken from a survey over other FindFFMPEG.cmake files
|
||||||
|
if (NOT FFmpeg_FIND_COMPONENTS)
|
||||||
|
set(FFmpeg_FIND_COMPONENTS AVCODEC AVFORMAT AVUTIL)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
#
|
||||||
|
### Macro: set_component_found
|
||||||
|
#
|
||||||
|
# Marks the given component as found if both *_LIBRARIES AND *_INCLUDE_DIRS is present.
|
||||||
|
#
|
||||||
|
macro(set_component_found _component )
|
||||||
|
if (${_component}_LIBRARIES AND ${_component}_INCLUDE_DIRS)
|
||||||
|
# message(STATUS " - ${_component} found.")
|
||||||
|
set(${_component}_FOUND TRUE)
|
||||||
|
else ()
|
||||||
|
# message(STATUS " - ${_component} not found.")
|
||||||
|
endif ()
|
||||||
|
endmacro()
|
||||||
|
|
||||||
|
#
|
||||||
|
### Macro: find_component
|
||||||
|
#
|
||||||
|
# Checks for the given component by invoking pkgconfig and then looking up the libraries and
|
||||||
|
# include directories.
|
||||||
|
#
|
||||||
|
macro(find_component _component _pkgconfig _library _header)
|
||||||
|
|
||||||
|
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)
|
||||||
|
if (PKG_CONFIG_FOUND)
|
||||||
|
pkg_check_modules(PC_${_component} ${_pkgconfig})
|
||||||
|
endif ()
|
||||||
|
endif (NOT WIN32)
|
||||||
|
|
||||||
|
find_path(${_component}_INCLUDE_DIRS ${_header}
|
||||||
|
HINTS
|
||||||
|
${PC_${_component}_INCLUDEDIR}
|
||||||
|
${PC_${_component}_INCLUDE_DIRS}
|
||||||
|
PATH_SUFFIXES
|
||||||
|
ffmpeg
|
||||||
|
)
|
||||||
|
|
||||||
|
find_library(${_component}_LIBRARIES NAMES ${_library}
|
||||||
|
HINTS
|
||||||
|
${PC_${_component}_LIBDIR}
|
||||||
|
${PC_${_component}_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
set(${_component}_DEFINITIONS ${PC_${_component}_CFLAGS_OTHER} CACHE STRING "The ${_component} CFLAGS.")
|
||||||
|
set(${_component}_VERSION ${PC_${_component}_VERSION} CACHE STRING "The ${_component} version number.")
|
||||||
|
|
||||||
|
set_component_found(${_component})
|
||||||
|
|
||||||
|
mark_as_advanced(
|
||||||
|
${_component}_INCLUDE_DIRS
|
||||||
|
${_component}_LIBRARIES
|
||||||
|
${_component}_DEFINITIONS
|
||||||
|
${_component}_VERSION)
|
||||||
|
|
||||||
|
endmacro()
|
||||||
|
|
||||||
|
|
||||||
|
# Check for cached results. If there are skip the costly part.
|
||||||
|
if (NOT FFMPEG_LIBRARIES)
|
||||||
|
|
||||||
|
# Check for all possible component.
|
||||||
|
find_component(AVCODEC libavcodec avcodec libavcodec/avcodec.h)
|
||||||
|
find_component(AVFORMAT libavformat avformat libavformat/avformat.h)
|
||||||
|
find_component(AVDEVICE libavdevice avdevice libavdevice/avdevice.h)
|
||||||
|
find_component(AVUTIL libavutil avutil libavutil/avutil.h)
|
||||||
|
find_component(AVFILTER libavfilter avfilter libavfilter/avfilter.h)
|
||||||
|
find_component(SWSCALE libswscale swscale libswscale/swscale.h)
|
||||||
|
find_component(POSTPROC libpostproc postproc libpostproc/postprocess.h)
|
||||||
|
find_component(SWRESAMPLE libswresample swresample libswresample/swresample.h)
|
||||||
|
|
||||||
|
# Check if the required components were found and add their stuff to the FFMPEG_* vars.
|
||||||
|
foreach (_component ${FFmpeg_FIND_COMPONENTS})
|
||||||
|
if (${_component}_FOUND)
|
||||||
|
message(STATUS "Found ffmpeg component ${_component}.")
|
||||||
|
set(FFMPEG_LIBRARIES ${FFMPEG_LIBRARIES} ${${_component}_LIBRARIES})
|
||||||
|
set(FFMPEG_DEFINITIONS ${FFMPEG_DEFINITIONS} ${${_component}_DEFINITIONS})
|
||||||
|
list(APPEND FFMPEG_INCLUDE_DIRS ${${_component}_INCLUDE_DIRS})
|
||||||
|
else ()
|
||||||
|
message(STATUS "Missing ffmpeg component ${_component}.")
|
||||||
|
endif ()
|
||||||
|
endforeach ()
|
||||||
|
|
||||||
|
# Build the include path with duplicates removed.
|
||||||
|
if (FFMPEG_INCLUDE_DIRS)
|
||||||
|
list(REMOVE_DUPLICATES FFMPEG_INCLUDE_DIRS)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# cache the vars.
|
||||||
|
set(FFMPEG_INCLUDE_DIRS ${FFMPEG_INCLUDE_DIRS} CACHE STRING "The FFmpeg include directories." FORCE)
|
||||||
|
set(FFMPEG_LIBRARIES ${FFMPEG_LIBRARIES} CACHE STRING "The FFmpeg libraries." FORCE)
|
||||||
|
set(FFMPEG_DEFINITIONS ${FFMPEG_DEFINITIONS} CACHE STRING "The FFmpeg cflags." FORCE)
|
||||||
|
|
||||||
|
mark_as_advanced(FFMPEG_INCLUDE_DIRS
|
||||||
|
FFMPEG_LIBRARIES
|
||||||
|
FFMPEG_DEFINITIONS)
|
||||||
|
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# Now set the noncached _FOUND vars for the components.
|
||||||
|
foreach (_component AVCODEC AVDEVICE AVFORMAT AVUTIL POSTPROCESS SWSCALE SWRESAMPLE)
|
||||||
|
set_component_found(${_component})
|
||||||
|
endforeach ()
|
||||||
|
|
||||||
|
# Compile the list of required vars
|
||||||
|
set(_FFmpeg_REQUIRED_VARS FFMPEG_LIBRARIES FFMPEG_INCLUDE_DIRS)
|
||||||
|
foreach (_component ${FFmpeg_FIND_COMPONENTS})
|
||||||
|
list(APPEND _FFmpeg_REQUIRED_VARS ${_component}_LIBRARIES ${_component}_INCLUDE_DIRS)
|
||||||
|
endforeach ()
|
||||||
|
|
||||||
|
# Give a nice error message if some of the required vars are missing.
|
||||||
|
find_package_handle_standard_args(FFmpeg DEFAULT_MSG ${_FFmpeg_REQUIRED_VARS})
|
|
@ -0,0 +1,564 @@
|
||||||
|
# - FindGTK3.cmake
|
||||||
|
# This module can find the GTK3 widget libraries and several of its other
|
||||||
|
# optional components like gtkmm, glade, and glademm.
|
||||||
|
#
|
||||||
|
# NOTE: If you intend to use version checking, CMake 2.6.2 or later is
|
||||||
|
# required.
|
||||||
|
#
|
||||||
|
# Specify one or more of the following components
|
||||||
|
# as you call this find module. See example below.
|
||||||
|
#
|
||||||
|
# gtk
|
||||||
|
# gtkmm
|
||||||
|
# glade
|
||||||
|
# glademm
|
||||||
|
#
|
||||||
|
# The following variables will be defined for your use
|
||||||
|
#
|
||||||
|
# GTK3_FOUND - Were all of your specified components found?
|
||||||
|
# GTK3_INCLUDE_DIRS - All include directories
|
||||||
|
# GTK3_LIBRARIES - All libraries
|
||||||
|
#
|
||||||
|
# GTK3_VERSION - The version of GTK3 found (x.y.z)
|
||||||
|
# GTK3_MAJOR_VERSION - The major version of GTK3
|
||||||
|
# GTK3_MINOR_VERSION - The minor version of GTK3
|
||||||
|
# GTK3_PATCH_VERSION - The patch version of GTK3
|
||||||
|
#
|
||||||
|
# Optional variables you can define prior to calling this module:
|
||||||
|
#
|
||||||
|
# GTK3_DEBUG - Enables verbose debugging of the module
|
||||||
|
# GTK3_SKIP_MARK_AS_ADVANCED - Disable marking cache variables as advanced
|
||||||
|
# GTK3_ADDITIONAL_SUFFIXES - Allows defining additional directories to
|
||||||
|
# search for include files
|
||||||
|
#
|
||||||
|
#=================
|
||||||
|
# Example Usage:
|
||||||
|
#
|
||||||
|
# Call find_package() once, here are some examples to pick from:
|
||||||
|
#
|
||||||
|
# Require GTK 3.0 or later
|
||||||
|
# find_package(GTK3 3.0 REQUIRED gtk)
|
||||||
|
#
|
||||||
|
# if(GTK3_FOUND)
|
||||||
|
# include_directories(${GTK3_INCLUDE_DIRS})
|
||||||
|
# add_executable(mygui mygui.cc)
|
||||||
|
# target_link_libraries(mygui ${GTK3_LIBRARIES})
|
||||||
|
# endif()
|
||||||
|
#
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Copyright 2009 Kitware, Inc.
|
||||||
|
# Copyright 2008-2009 Philip Lowman <philip@yhbt.com>
|
||||||
|
#
|
||||||
|
# Distributed under the OSI-approved BSD License (the "License");
|
||||||
|
# see accompanying file Copyright.txt for details.
|
||||||
|
#
|
||||||
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
||||||
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
# See the License for more information.
|
||||||
|
#=============================================================================
|
||||||
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
|
# License text for the above reference.)
|
||||||
|
|
||||||
|
|
||||||
|
# Version 0.1 (5/13/2011)
|
||||||
|
# * First cut at a GTK3 version (Heavily derived from
|
||||||
|
# FindGTK2.cmake)
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================
|
||||||
|
# _GTK3_GET_VERSION
|
||||||
|
# Internal function to parse the version number in gtkversion.h
|
||||||
|
# _OUT_major = Major version number
|
||||||
|
# _OUT_minor = Minor version number
|
||||||
|
# _OUT_micro = Micro version number
|
||||||
|
# _gtkversion_hdr = Header file to parse
|
||||||
|
#=============================================================
|
||||||
|
function(_GTK3_GET_VERSION _OUT_major _OUT_minor _OUT_micro _gtkversion_hdr)
|
||||||
|
file(READ ${_gtkversion_hdr} _contents)
|
||||||
|
if(_contents)
|
||||||
|
string(REGEX REPLACE ".*#define GTK_MAJOR_VERSION[ \t]+\\(([0-9]+)\\).*" "\\1" ${_OUT_major} "${_contents}")
|
||||||
|
string(REGEX REPLACE ".*#define GTK_MINOR_VERSION[ \t]+\\(([0-9]+)\\).*" "\\1" ${_OUT_minor} "${_contents}")
|
||||||
|
string(REGEX REPLACE ".*#define GTK_MICRO_VERSION[ \t]+\\(([0-9]+)\\).*" "\\1" ${_OUT_micro} "${_contents}")
|
||||||
|
|
||||||
|
if(NOT ${_OUT_major} MATCHES "[0-9]+")
|
||||||
|
message(FATAL_ERROR "Version parsing failed for GTK3_MAJOR_VERSION!")
|
||||||
|
endif()
|
||||||
|
if(NOT ${_OUT_minor} MATCHES "[0-9]+")
|
||||||
|
message(FATAL_ERROR "Version parsing failed for GTK3_MINOR_VERSION!")
|
||||||
|
endif()
|
||||||
|
if(NOT ${_OUT_micro} MATCHES "[0-9]+")
|
||||||
|
message(FATAL_ERROR "Version parsing failed for GTK3_MICRO_VERSION!")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(${_OUT_major} ${${_OUT_major}} PARENT_SCOPE)
|
||||||
|
set(${_OUT_minor} ${${_OUT_minor}} PARENT_SCOPE)
|
||||||
|
set(${_OUT_micro} ${${_OUT_micro}} PARENT_SCOPE)
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Include file ${_gtkversion_hdr} does not exist")
|
||||||
|
endif()
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
#=============================================================
|
||||||
|
# _GTK3_FIND_INCLUDE_DIR
|
||||||
|
# Internal function to find the GTK include directories
|
||||||
|
# _var = variable to set
|
||||||
|
# _hdr = header file to look for
|
||||||
|
#=============================================================
|
||||||
|
function(_GTK3_FIND_INCLUDE_DIR _var _hdr)
|
||||||
|
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"_GTK3_FIND_INCLUDE_DIR( ${_var} ${_hdr} )")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(_relatives
|
||||||
|
# If these ever change, things will break.
|
||||||
|
${GTK3_ADDITIONAL_SUFFIXES}
|
||||||
|
glibmm-2.0
|
||||||
|
glib-2.0
|
||||||
|
atk-1.0
|
||||||
|
atkmm-1.0
|
||||||
|
cairo
|
||||||
|
cairomm-1.0
|
||||||
|
gdk-pixbuf-2.0
|
||||||
|
gdkmm-2.4
|
||||||
|
giomm-2.4
|
||||||
|
gtk-3.0
|
||||||
|
gtkmm-2.4
|
||||||
|
libglade-2.0
|
||||||
|
libglademm-2.4
|
||||||
|
pango-1.0
|
||||||
|
pangomm-1.4
|
||||||
|
sigc++-2.2
|
||||||
|
gtk-unix-print-2.0
|
||||||
|
)
|
||||||
|
|
||||||
|
set(_suffixes)
|
||||||
|
foreach(_d ${_relatives})
|
||||||
|
list(APPEND _suffixes ${_d})
|
||||||
|
list(APPEND _suffixes ${_d}/include) # for /usr/lib/gtk-2.0/include
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"include suffixes = ${_suffixes}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_path(${_var} ${_hdr}
|
||||||
|
PATHS
|
||||||
|
/usr/local/lib64
|
||||||
|
/usr/local/lib
|
||||||
|
# fix for Ubuntu == 11.04 (Natty Narwhal)
|
||||||
|
/usr/lib/i386-linux-gnu/
|
||||||
|
/usr/lib/x86_64-linux-gnu/
|
||||||
|
# end
|
||||||
|
# fix for Ubuntu >= 11.10 (Oneiric Ocelot)
|
||||||
|
/usr/lib/${CMAKE_LIBRARY_ARCHITECTURE}
|
||||||
|
# end
|
||||||
|
/usr/lib64
|
||||||
|
/usr/lib
|
||||||
|
/opt/gnome/include
|
||||||
|
/opt/gnome/lib
|
||||||
|
/opt/openwin/include
|
||||||
|
/usr/openwin/lib
|
||||||
|
/sw/include
|
||||||
|
/sw/lib
|
||||||
|
/opt/local/include
|
||||||
|
/opt/local/lib
|
||||||
|
$ENV{GTKMM_BASEPATH}/include
|
||||||
|
$ENV{GTKMM_BASEPATH}/lib
|
||||||
|
[HKEY_CURRENT_USER\\SOFTWARE\\gtkmm\\2.4;Path]/include
|
||||||
|
[HKEY_CURRENT_USER\\SOFTWARE\\gtkmm\\2.4;Path]/lib
|
||||||
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\gtkmm\\2.4;Path]/include
|
||||||
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\gtkmm\\2.4;Path]/lib
|
||||||
|
PATH_SUFFIXES
|
||||||
|
${_suffixes}
|
||||||
|
)
|
||||||
|
|
||||||
|
if(${_var})
|
||||||
|
set(GTK3_INCLUDE_DIRS ${GTK3_INCLUDE_DIRS} ${${_var}} PARENT_SCOPE)
|
||||||
|
if(NOT GTK3_SKIP_MARK_AS_ADVANCED)
|
||||||
|
mark_as_advanced(${_var})
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
endfunction(_GTK3_FIND_INCLUDE_DIR)
|
||||||
|
|
||||||
|
#=============================================================
|
||||||
|
# _GTK3_FIND_LIBRARY
|
||||||
|
# Internal function to find libraries packaged with GTK3
|
||||||
|
# _var = library variable to create
|
||||||
|
#=============================================================
|
||||||
|
function(_GTK3_FIND_LIBRARY _var _lib _expand_vc _append_version)
|
||||||
|
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"_GTK3_FIND_LIBRARY( ${_var} ${_lib} ${_expand_vc} ${_append_version} )")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Not GTK versions per se but the versions encoded into Windows
|
||||||
|
# import libraries (GtkMM 2.14.1 has a gtkmm-vc80-2_4.lib for example)
|
||||||
|
# Also the MSVC libraries use _ for . (this is handled below)
|
||||||
|
# ********* SOMEONE WITH WINDOWS NEEDS TO CHECK THIS BIT FOR V3 *********
|
||||||
|
# ********* the plain 3 is needed to get Debian Sid to find the libraries
|
||||||
|
set(_versions 3.0 3 2.20 2.18 2.16 2.14 2.12
|
||||||
|
2.10 2.8 2.6 2.4 2.2 2.0
|
||||||
|
1.20 1.18 1.16 1.14 1.12
|
||||||
|
1.10 1.8 1.6 1.4 1.2 1.0)
|
||||||
|
|
||||||
|
set(_library)
|
||||||
|
set(_library_d)
|
||||||
|
|
||||||
|
set(_library ${_lib})
|
||||||
|
|
||||||
|
if(_expand_vc AND MSVC)
|
||||||
|
# Add vc80/vc90/vc100 midfixes
|
||||||
|
if(MSVC80)
|
||||||
|
set(_library ${_library}-vc80)
|
||||||
|
elseif(MSVC90)
|
||||||
|
set(_library ${_library}-vc90)
|
||||||
|
elseif(MSVC10)
|
||||||
|
set(_library ${_library}-vc100)
|
||||||
|
endif()
|
||||||
|
set(_library_d ${_library}-d)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"After midfix addition = ${_library} and ${_library_d}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(_lib_list)
|
||||||
|
set(_libd_list)
|
||||||
|
if(_append_version)
|
||||||
|
foreach(_ver ${_versions})
|
||||||
|
list(APPEND _lib_list "${_library}-${_ver}")
|
||||||
|
list(APPEND _libd_list "${_library_d}-${_ver}")
|
||||||
|
endforeach()
|
||||||
|
else()
|
||||||
|
set(_lib_list ${_library})
|
||||||
|
set(_libd_list ${_library_d})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"library list = ${_lib_list} and library debug list = ${_libd_list}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# For some silly reason the MSVC libraries use _ instead of .
|
||||||
|
# in the version fields
|
||||||
|
if(_expand_vc AND MSVC)
|
||||||
|
set(_no_dots_lib_list)
|
||||||
|
set(_no_dots_libd_list)
|
||||||
|
foreach(_l ${_lib_list})
|
||||||
|
string(REPLACE "." "_" _no_dots_library ${_l})
|
||||||
|
list(APPEND _no_dots_lib_list ${_no_dots_library})
|
||||||
|
endforeach()
|
||||||
|
# And for debug
|
||||||
|
set(_no_dots_libsd_list)
|
||||||
|
foreach(_l ${_libd_list})
|
||||||
|
string(REPLACE "." "_" _no_dots_libraryd ${_l})
|
||||||
|
list(APPEND _no_dots_libd_list ${_no_dots_libraryd})
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
# Copy list back to original names
|
||||||
|
set(_lib_list ${_no_dots_lib_list})
|
||||||
|
set(_libd_list ${_no_dots_libd_list})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"While searching for ${_var}, our proposed library list is ${_lib_list}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_library(${_var}
|
||||||
|
NAMES ${_lib_list}
|
||||||
|
PATHS
|
||||||
|
/opt/gnome/lib
|
||||||
|
/opt/gnome/lib64
|
||||||
|
/usr/openwin/lib
|
||||||
|
/usr/openwin/lib64
|
||||||
|
/sw/lib
|
||||||
|
$ENV{GTKMM_BASEPATH}/lib
|
||||||
|
[HKEY_CURRENT_USER\\SOFTWARE\\gtkmm\\2.4;Path]/lib
|
||||||
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\gtkmm\\2.4;Path]/lib
|
||||||
|
)
|
||||||
|
|
||||||
|
if(_expand_vc AND MSVC)
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"While searching for ${_var}_DEBUG our proposed library list is ${_libd_list}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_library(${_var}_DEBUG
|
||||||
|
NAMES ${_libd_list}
|
||||||
|
PATHS
|
||||||
|
$ENV{GTKMM_BASEPATH}/lib
|
||||||
|
[HKEY_CURRENT_USER\\SOFTWARE\\gtkmm\\2.4;Path]/lib
|
||||||
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\gtkmm\\2.4;Path]/lib
|
||||||
|
)
|
||||||
|
|
||||||
|
if(${_var} AND ${_var}_DEBUG)
|
||||||
|
if(NOT GTK3_SKIP_MARK_AS_ADVANCED)
|
||||||
|
mark_as_advanced(${_var}_DEBUG)
|
||||||
|
endif()
|
||||||
|
set(GTK3_LIBRARIES ${GTK3_LIBRARIES} optimized ${${_var}} debug ${${_var}_DEBUG})
|
||||||
|
set(GTK3_LIBRARIES ${GTK3_LIBRARIES} PARENT_SCOPE)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
if(NOT GTK3_SKIP_MARK_AS_ADVANCED)
|
||||||
|
mark_as_advanced(${_var})
|
||||||
|
endif()
|
||||||
|
set(GTK3_LIBRARIES ${GTK3_LIBRARIES} ${${_var}})
|
||||||
|
set(GTK3_LIBRARIES ${GTK3_LIBRARIES} PARENT_SCOPE)
|
||||||
|
# Set debug to release
|
||||||
|
set(${_var}_DEBUG ${${_var}})
|
||||||
|
set(${_var}_DEBUG ${${_var}} PARENT_SCOPE)
|
||||||
|
endif()
|
||||||
|
endfunction(_GTK3_FIND_LIBRARY)
|
||||||
|
|
||||||
|
#=============================================================
|
||||||
|
|
||||||
|
#
|
||||||
|
# main()
|
||||||
|
#
|
||||||
|
|
||||||
|
set(GTK3_FOUND)
|
||||||
|
set(GTK3_INCLUDE_DIRS)
|
||||||
|
set(GTK3_LIBRARIES)
|
||||||
|
|
||||||
|
if(NOT GTK3_FIND_COMPONENTS)
|
||||||
|
# Assume they only want GTK
|
||||||
|
set(GTK3_FIND_COMPONENTS gtk)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#
|
||||||
|
# If specified, enforce version number
|
||||||
|
#
|
||||||
|
if(GTK3_FIND_VERSION)
|
||||||
|
cmake_minimum_required(VERSION 2.6.2)
|
||||||
|
set(GTK3_FAILED_VERSION_CHECK true)
|
||||||
|
if(GTK3_DEBUG)
|
||||||
|
message(STATUS "[FindGTK3.cmake:${CMAKE_CURRENT_LIST_LINE}] "
|
||||||
|
"Searching for version ${GTK3_FIND_VERSION}")
|
||||||
|
endif()
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GTK_INCLUDE_DIR gtk/gtk.h)
|
||||||
|
if(GTK3_GTK_INCLUDE_DIR)
|
||||||
|
_GTK3_GET_VERSION(GTK3_MAJOR_VERSION
|
||||||
|
GTK3_MINOR_VERSION
|
||||||
|
GTK3_PATCH_VERSION
|
||||||
|
${GTK3_GTK_INCLUDE_DIR}/gtk/gtkversion.h)
|
||||||
|
set(GTK3_VERSION
|
||||||
|
${GTK3_MAJOR_VERSION}.${GTK3_MINOR_VERSION}.${GTK3_PATCH_VERSION})
|
||||||
|
if(GTK3_FIND_VERSION_EXACT)
|
||||||
|
if(GTK3_VERSION VERSION_EQUAL GTK3_FIND_VERSION)
|
||||||
|
set(GTK3_FAILED_VERSION_CHECK false)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
if(GTK3_VERSION VERSION_EQUAL GTK3_FIND_VERSION OR
|
||||||
|
GTK3_VERSION VERSION_GREATER GTK3_FIND_VERSION)
|
||||||
|
set(GTK3_FAILED_VERSION_CHECK false)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# If we can't find the GTK include dir, we can't do version checking
|
||||||
|
if(GTK3_FIND_REQUIRED AND NOT GTK3_FIND_QUIETLY)
|
||||||
|
message(FATAL_ERROR "Could not find GTK3 include directory")
|
||||||
|
endif()
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(GTK3_FAILED_VERSION_CHECK)
|
||||||
|
if(GTK3_FIND_REQUIRED AND NOT GTK3_FIND_QUIETLY)
|
||||||
|
if(GTK3_FIND_VERSION_EXACT)
|
||||||
|
message(FATAL_ERROR "GTK3 version check failed. Version ${GTK3_VERSION} was found, version ${GTK3_FIND_VERSION} is needed exactly.")
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "GTK3 version check failed. Version ${GTK3_VERSION} was found, at least version ${GTK3_FIND_VERSION} is required")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# If the version check fails, exit out of the module here
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Find all components
|
||||||
|
#
|
||||||
|
|
||||||
|
find_package(Freetype)
|
||||||
|
list(APPEND GTK3_INCLUDE_DIRS ${FREETYPE_INCLUDE_DIRS})
|
||||||
|
list(APPEND GTK3_LIBRARIES ${FREETYPE_LIBRARIES})
|
||||||
|
|
||||||
|
foreach(_GTK3_component ${GTK3_FIND_COMPONENTS})
|
||||||
|
if(_GTK3_component STREQUAL "gtk")
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLIB_INCLUDE_DIR glib.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLIBCONFIG_INCLUDE_DIR glibconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GLIB_LIBRARY glib false true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GOBJECT_INCLUDE_DIR gobject/gobject.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GOBJECT_LIBRARY gobject false true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GDK_PIXBUF_INCLUDE_DIR gdk-pixbuf/gdk-pixbuf.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GDK_PIXBUF_LIBRARY gdk_pixbuf false true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GDK_INCLUDE_DIR gdk/gdk.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GDKCONFIG_INCLUDE_DIR gdk/gdkconfig.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GTK_INCLUDE_DIR gtk/gtk.h)
|
||||||
|
|
||||||
|
# ********* At least on Debian the gdk & gtk libraries
|
||||||
|
# ********* don't have the -x11 suffix.
|
||||||
|
if(UNIX)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GDK_LIBRARY gdk false true)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GTK_LIBRARY gtk false true)
|
||||||
|
else()
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GDK_LIBRARY gdk-win32 false true)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GTK_LIBRARY gtk-win32 false true)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_CAIRO_INCLUDE_DIR cairo.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_CAIRO_LIBRARY cairo false false)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_FONTCONFIG_INCLUDE_DIR fontconfig/fontconfig.h)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_PANGO_INCLUDE_DIR pango/pango.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_PANGO_LIBRARY pango false true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_ATK_INCLUDE_DIR atk/atk.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_ATK_LIBRARY atk false true)
|
||||||
|
|
||||||
|
|
||||||
|
elseif(_GTK3_component STREQUAL "gtkmm")
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLIBMM_INCLUDE_DIR glibmm.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLIBMMCONFIG_INCLUDE_DIR glibmmconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GLIBMM_LIBRARY glibmm true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GDKMM_INCLUDE_DIR gdkmm.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GDKMMCONFIG_INCLUDE_DIR gdkmmconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GDKMM_LIBRARY gdkmm true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GTKMM_INCLUDE_DIR gtkmm.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GTKMMCONFIG_INCLUDE_DIR gtkmmconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GTKMM_LIBRARY gtkmm true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_CAIROMM_INCLUDE_DIR cairomm/cairomm.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_CAIROMM_LIBRARY cairomm true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_PANGOMM_INCLUDE_DIR pangomm.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_PANGOMMCONFIG_INCLUDE_DIR pangommconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_PANGOMM_LIBRARY pangomm true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_SIGC++_INCLUDE_DIR sigc++/sigc++.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_SIGC++CONFIG_INCLUDE_DIR sigc++config.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_SIGC++_LIBRARY sigc true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GIOMM_INCLUDE_DIR giomm.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GIOMMCONFIG_INCLUDE_DIR giommconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GIOMM_LIBRARY giomm true true)
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_ATKMM_INCLUDE_DIR atkmm.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_ATKMM_LIBRARY atkmm true true)
|
||||||
|
|
||||||
|
elseif(_GTK3_component STREQUAL "glade")
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLADE_INCLUDE_DIR glade/glade.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GLADE_LIBRARY glade false true)
|
||||||
|
|
||||||
|
elseif(_GTK3_component STREQUAL "glademm")
|
||||||
|
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLADEMM_INCLUDE_DIR libglademm.h)
|
||||||
|
_GTK3_FIND_INCLUDE_DIR(GTK3_GLADEMMCONFIG_INCLUDE_DIR libglademmconfig.h)
|
||||||
|
_GTK3_FIND_LIBRARY (GTK3_GLADEMM_LIBRARY glademm true true)
|
||||||
|
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Unknown GTK3 component ${_component}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Solve for the GTK3 version if we haven't already
|
||||||
|
#
|
||||||
|
if(NOT GTK3_FIND_VERSION AND GTK3_GTK_INCLUDE_DIR)
|
||||||
|
_GTK3_GET_VERSION(GTK3_MAJOR_VERSION
|
||||||
|
GTK3_MINOR_VERSION
|
||||||
|
GTK3_PATCH_VERSION
|
||||||
|
${GTK3_GTK_INCLUDE_DIR}/gtk/gtkversion.h)
|
||||||
|
set(GTK3_VERSION ${GTK3_MAJOR_VERSION}.${GTK3_MINOR_VERSION}.${GTK3_PATCH_VERSION})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Try to enforce components
|
||||||
|
#
|
||||||
|
|
||||||
|
set(_GTK3_did_we_find_everything true) # This gets set to GTK3_FOUND
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
#include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
|
||||||
|
foreach(_GTK3_component ${GTK3_FIND_COMPONENTS})
|
||||||
|
string(TOUPPER ${_GTK3_component} _COMPONENT_UPPER)
|
||||||
|
|
||||||
|
if(_GTK3_component STREQUAL "gtk")
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTK3_${_COMPONENT_UPPER} "Some or all of the gtk libraries were not found."
|
||||||
|
GTK3_GTK_LIBRARY
|
||||||
|
GTK3_GTK_INCLUDE_DIR
|
||||||
|
|
||||||
|
GTK3_GLIB_INCLUDE_DIR
|
||||||
|
GTK3_GLIBCONFIG_INCLUDE_DIR
|
||||||
|
GTK3_GLIB_LIBRARY
|
||||||
|
|
||||||
|
GTK3_GDK_INCLUDE_DIR
|
||||||
|
GTK3_GDKCONFIG_INCLUDE_DIR
|
||||||
|
GTK3_GDK_LIBRARY
|
||||||
|
)
|
||||||
|
elseif(_GTK3_component STREQUAL "gtkmm")
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTK3_${_COMPONENT_UPPER} "Some or all of the gtkmm libraries were not found."
|
||||||
|
GTK3_GTKMM_LIBRARY
|
||||||
|
GTK3_GTKMM_INCLUDE_DIR
|
||||||
|
GTK3_GTKMMCONFIG_INCLUDE_DIR
|
||||||
|
|
||||||
|
GTK3_GLIBMM_INCLUDE_DIR
|
||||||
|
GTK3_GLIBMMCONFIG_INCLUDE_DIR
|
||||||
|
GTK3_GLIBMM_LIBRARY
|
||||||
|
|
||||||
|
GTK3_GDKMM_INCLUDE_DIR
|
||||||
|
GTK3_GDKMMCONFIG_INCLUDE_DIR
|
||||||
|
GTK3_GDKMM_LIBRARY
|
||||||
|
)
|
||||||
|
elseif(_GTK3_component STREQUAL "glade")
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTK3_${_COMPONENT_UPPER} "The glade library was not found."
|
||||||
|
GTK3_GLADE_LIBRARY
|
||||||
|
GTK3_GLADE_INCLUDE_DIR
|
||||||
|
)
|
||||||
|
elseif(_GTK3_component STREQUAL "glademm")
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GTK3_${_COMPONENT_UPPER} "The glademm library was not found."
|
||||||
|
GTK3_GLADEMM_LIBRARY
|
||||||
|
GTK3_GLADEMM_INCLUDE_DIR
|
||||||
|
GTK3_GLADEMMCONFIG_INCLUDE_DIR
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT GTK3_${_COMPONENT_UPPER}_FOUND)
|
||||||
|
set(_GTK3_did_we_find_everything false)
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
if(_GTK3_did_we_find_everything AND NOT GTK3_VERSION_CHECK_FAILED)
|
||||||
|
set(GTK3_FOUND true)
|
||||||
|
else()
|
||||||
|
# Unset our variables.
|
||||||
|
set(GTK3_FOUND false)
|
||||||
|
set(GTK3_VERSION)
|
||||||
|
set(GTK3_VERSION_MAJOR)
|
||||||
|
set(GTK3_VERSION_MINOR)
|
||||||
|
set(GTK3_VERSION_PATCH)
|
||||||
|
set(GTK3_INCLUDE_DIRS)
|
||||||
|
set(GTK3_LIBRARIES)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(GTK3_INCLUDE_DIRS)
|
||||||
|
list(REMOVE_DUPLICATES GTK3_INCLUDE_DIRS)
|
||||||
|
endif()
|
||||||
|
|
|
@ -0,0 +1,60 @@
|
||||||
|
# - Try to find Iconv
|
||||||
|
# Once done this will define
|
||||||
|
#
|
||||||
|
# ICONV_FOUND - system has Iconv
|
||||||
|
# ICONV_INCLUDE_DIR - the Iconv include directory
|
||||||
|
# ICONV_LIBRARIES - Link these to use Iconv
|
||||||
|
# ICONV_SECOND_ARGUMENT_IS_CONST - the second argument for iconv() is const
|
||||||
|
#
|
||||||
|
include(CheckCXXSourceCompiles)
|
||||||
|
|
||||||
|
IF (ICONV_INCLUDE_DIR AND ICONV_LIBRARIES)
|
||||||
|
# Already in cache, be silent
|
||||||
|
SET(ICONV_FIND_QUIETLY TRUE)
|
||||||
|
ENDIF (ICONV_INCLUDE_DIR AND ICONV_LIBRARIES)
|
||||||
|
|
||||||
|
FIND_PATH(ICONV_INCLUDE_DIR iconv.h)
|
||||||
|
|
||||||
|
FIND_LIBRARY(ICONV_LIBRARIES NAMES iconv libiconv libiconv-2 c)
|
||||||
|
|
||||||
|
IF(ICONV_INCLUDE_DIR AND ICONV_LIBRARIES)
|
||||||
|
SET(ICONV_FOUND TRUE)
|
||||||
|
ENDIF(ICONV_INCLUDE_DIR AND ICONV_LIBRARIES)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${ICONV_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${ICONV_LIBRARIES})
|
||||||
|
IF(ICONV_FOUND)
|
||||||
|
check_cxx_source_compiles("
|
||||||
|
#include <iconv.h>
|
||||||
|
int main(){
|
||||||
|
iconv_t conv = 0;
|
||||||
|
const char* in = 0;
|
||||||
|
size_t ilen = 0;
|
||||||
|
char* out = 0;
|
||||||
|
size_t olen = 0;
|
||||||
|
iconv(conv, &in, &ilen, &out, &olen);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
" ICONV_SECOND_ARGUMENT_IS_CONST )
|
||||||
|
IF(ICONV_SECOND_ARGUMENT_IS_CONST)
|
||||||
|
SET(ICONV_CONST "const")
|
||||||
|
ENDIF(ICONV_SECOND_ARGUMENT_IS_CONST)
|
||||||
|
ENDIF(ICONV_FOUND)
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES)
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES)
|
||||||
|
|
||||||
|
IF(ICONV_FOUND)
|
||||||
|
IF(NOT ICONV_FIND_QUIETLY)
|
||||||
|
MESSAGE(STATUS "Found Iconv: ${ICONV_LIBRARIES}")
|
||||||
|
ENDIF(NOT ICONV_FIND_QUIETLY)
|
||||||
|
ELSE(ICONV_FOUND)
|
||||||
|
IF(Iconv_FIND_REQUIRED)
|
||||||
|
MESSAGE(FATAL_ERROR "Could not find Iconv")
|
||||||
|
ENDIF(Iconv_FIND_REQUIRED)
|
||||||
|
ENDIF(ICONV_FOUND)
|
||||||
|
|
||||||
|
MARK_AS_ADVANCED(
|
||||||
|
ICONV_INCLUDE_DIR
|
||||||
|
ICONV_LIBRARIES
|
||||||
|
ICONV_SECOND_ARGUMENT_IS_CONST
|
||||||
|
)
|
|
@ -0,0 +1,38 @@
|
||||||
|
# Finds libzip.
|
||||||
|
#
|
||||||
|
# This module defines:
|
||||||
|
# LIBZIP_INCLUDE_DIR_ZIP
|
||||||
|
# LIBZIP_INCLUDE_DIR_ZIPCONF
|
||||||
|
# LIBZIP_LIBRARY
|
||||||
|
#
|
||||||
|
|
||||||
|
find_package(PkgConfig)
|
||||||
|
pkg_check_modules(PC_LIBZIP QUIET libzip)
|
||||||
|
|
||||||
|
find_path(LIBZIP_INCLUDE_DIR_ZIP
|
||||||
|
NAMES zip.h
|
||||||
|
HINTS ${PC_LIBZIP_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
find_path(LIBZIP_INCLUDE_DIR_ZIPCONF
|
||||||
|
NAMES zipconf.h
|
||||||
|
HINTS ${PC_LIBZIP_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
find_library(LIBZIP_LIBRARY
|
||||||
|
NAMES zip)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
|
||||||
|
LIBZIP DEFAULT_MSG
|
||||||
|
LIBZIP_LIBRARY LIBZIP_INCLUDE_DIR_ZIP LIBZIP_INCLUDE_DIR_ZIPCONF)
|
||||||
|
|
||||||
|
set(LIBZIP_VERSION 0)
|
||||||
|
|
||||||
|
if (LIBZIP_INCLUDE_DIR_ZIPCONF)
|
||||||
|
FILE(READ "${LIBZIP_INCLUDE_DIR_ZIPCONF}/zipconf.h" _LIBZIP_VERSION_CONTENTS)
|
||||||
|
if (_LIBZIP_VERSION_CONTENTS)
|
||||||
|
STRING(REGEX REPLACE ".*#define LIBZIP_VERSION \"([0-9.]+)\".*" "\\1" LIBZIP_VERSION "${_LIBZIP_VERSION_CONTENTS}")
|
||||||
|
endif ()
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
set(LIBZIP_VERSION ${LIBZIP_VERSION} CACHE STRING "Version number of libzip")
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2017 pro.cxx
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
Loading…
Reference in New Issue