From 272352969834598cfd20f3e8b15916aa3ccebbbb Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux Date: Mon, 29 Mar 2021 20:28:58 +0200 Subject: Clean ECM's attic --- attic/modules/FindENCHANT.cmake | 44 ----------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 attic/modules/FindENCHANT.cmake (limited to 'attic/modules/FindENCHANT.cmake') diff --git a/attic/modules/FindENCHANT.cmake b/attic/modules/FindENCHANT.cmake deleted file mode 100644 index 9c13c488..00000000 --- a/attic/modules/FindENCHANT.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# - Try to find the Enchant spell checker -# Once done this will define -# -# ENCHANT_FOUND - system has ENCHANT -# ENCHANT_INCLUDE_DIR - the ENCHANT include directory -# ENCHANT_LIBRARIES - Link these to use ENCHANT -# ENCHANT_DEFINITIONS - Compiler switches required for using ENCHANT - -# Copyright (c) 2006, Zack Rusin, -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - - -if (ENCHANT_INCLUDE_DIR AND ENCHANT_LIBRARIES) - - # in cache already - set(ENCHANT_FOUND TRUE) - -else (ENCHANT_INCLUDE_DIR AND ENCHANT_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) - pkg_check_modules(PC_ENCHANT QUIET enchant) - set(ENCHANT_DEFINITIONS ${PC_ENCHANT_CFLAGS_OTHER}) - endif (NOT WIN32) - - find_path(ENCHANT_INCLUDE_DIR - NAMES enchant++.h - HINTS ${PC_ENCHANT_INCLUDEDIR} - ${PC_ENCHANT_INCLUDE_DIRS} - PATH_SUFFIXES enchant ) - - find_library(ENCHANT_LIBRARIES NAMES enchant - HINTS ${PC_ENCHANT_LIBDIR} - ${PC_ENCHANT_LIBRARY_DIRS} ) - - include(FindPackageHandleStandardArgs) - find_package_handle_standard_args(ENCHANT DEFAULT_MSG ENCHANT_INCLUDE_DIR ENCHANT_LIBRARIES ) - - mark_as_advanced(ENCHANT_INCLUDE_DIR ENCHANT_LIBRARIES) - -endif (ENCHANT_INCLUDE_DIR AND ENCHANT_LIBRARIES) -- cgit v1.2.1