summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/Modules/FindGtkSpell.cmake
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-04-02 21:03:47 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-04-02 21:03:47 +0000
commit0d6517f328249e7e8ece3d8e4cf5247b7fd6eeb8 (patch)
treee88af7eeb9453cd1603aa79bbd7300a0f5148694 /CMakeScripts/Modules/FindGtkSpell.cmake
parentUpdate packaging for double-conversion (diff)
downloadinkscape-0d6517f328249e7e8ece3d8e4cf5247b7fd6eeb8.tar.gz
inkscape-0d6517f328249e7e8ece3d8e4cf5247b7fd6eeb8.zip
CMake: Remove unused modules
Diffstat (limited to 'CMakeScripts/Modules/FindGtkSpell.cmake')
-rw-r--r--CMakeScripts/Modules/FindGtkSpell.cmake28
1 files changed, 0 insertions, 28 deletions
diff --git a/CMakeScripts/Modules/FindGtkSpell.cmake b/CMakeScripts/Modules/FindGtkSpell.cmake
deleted file mode 100644
index 131ad8dc8..000000000
--- a/CMakeScripts/Modules/FindGtkSpell.cmake
+++ /dev/null
@@ -1,28 +0,0 @@
-# - Try to find GtkSpell
-# Once done this will define
-#
-# GTKSPELL_FOUND - system has GtkSpell
-# GTKSPELL_INCLUDE_DIRS - the GtkSpell include directory
-# GTKSPELL_LIBRARIES - Link these to use GtkSpell
-# GTKSPELL_DEFINITIONS - Compiler switches required for using GtkSpell
-#
-# Copyright (c) 2008 Joshua L. Blocher <verbalshadow@gmail.com>
-#
-# Redistribution and use is allowed according to the terms of the New
-# BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-#
-
-include(${CMAKE_CURRENT_LIST_DIR}/../HelperMacros.cmake)
-
-if (GTKSPELL_LIBRARIES AND GTKSPELL_INCLUDE_DIRS)
- # in cache already
- set(GTKSPELL_FOUND TRUE)
-else (GTKSPELL_LIBRARIES AND GTKSPELL_INCLUDE_DIRS)
- # 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)
- INKSCAPE_PKG_CONFIG_FIND(GTKSPELL gtkspell-2.0 0 gtkspell/gtkspell.h gtkspell-2.0 gtkspell)
- endif (PKG_CONFIG_FOUND)
-endif (GTKSPELL_LIBRARIES AND GTKSPELL_INCLUDE_DIRS)