Sha256: 1db293bb9b74c63d8cbcf2a9cd7ef6ec2c7b6d43b51cc1029ca97d5368c3bfed

Contents?: true

Size: 1.04 KB

Versions: 51

Compression:

Stored size: 1.04 KB

Contents

# - 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
#

IF(ICONV_INCLUDE_DIR AND ICONV_LIBRARIES)
	# Already in cache, be silent
	SET(ICONV_FIND_QUIETLY TRUE)
ENDIF()

FIND_PATH(ICONV_INCLUDE_DIR iconv.h)
FIND_LIBRARY(iconv_lib NAMES iconv libiconv libiconv-2 c)

IF(ICONV_INCLUDE_DIR AND iconv_lib)
	 SET(ICONV_FOUND TRUE)
ENDIF()

IF(ICONV_FOUND)
	# split iconv into -L and -l linker options, so we can set them for pkg-config
	GET_FILENAME_COMPONENT(iconv_path ${iconv_lib} PATH)
	GET_FILENAME_COMPONENT(iconv_name ${iconv_lib} NAME_WE)
	STRING(REGEX REPLACE "^lib" "" iconv_name ${iconv_name})
	SET(ICONV_LIBRARIES "-L${iconv_path} -l${iconv_name}")

	IF(NOT ICONV_FIND_QUIETLY)
		MESSAGE(STATUS "Found Iconv: ${ICONV_LIBRARIES}")
	ENDIF(NOT ICONV_FIND_QUIETLY)
ELSE()
	IF(Iconv_FIND_REQUIRED)
		MESSAGE(FATAL_ERROR "Could not find Iconv")
	ENDIF(Iconv_FIND_REQUIRED)
ENDIF()

MARK_AS_ADVANCED(
	ICONV_INCLUDE_DIR
	ICONV_LIBRARIES
)

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
rugged-0.24.0b4 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.24.0b3 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.24.0b2 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.3 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.24.0b0 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.2 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.1.6.g1346734.pre vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.1 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.0 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.0b4 vendor/libgit2/cmake/Modules/FindIconv.cmake
rugged-0.23.0b2 vendor/libgit2/cmake/Modules/FindIconv.cmake