summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorgregory guy <g-gregory@gmx.fr>2019-01-12 16:52:26 +0100
committerSlávek Banko <slavek.banko@axis.cz>2019-01-12 17:36:57 +0100
commit0e91f9e91b851788bf7d00a95806c904e1f771ca (patch)
tree8057917e1269fcd709fd46da776e232953aa9ce2 /ConfigureChecks.cmake
parentfed195cae2cb376b3205e176f7a61c401bf00ace (diff)
downloadtdeio-sword-0e91f9e91b851788bf7d00a95806c904e1f771ca.tar.gz
tdeio-sword-0e91f9e91b851788bf7d00a95806c904e1f771ca.zip
remove unnecessaries in the search for the sword library and correct src/CMakeLists.txt accordingly
Signed-off-by: gregory guy <g-gregory@gmx.fr> (cherry picked from commit 4a978d158dfda21298c91d76358127dd2cc3ee98)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake12
1 files changed, 0 insertions, 12 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index ba07902..066f3cc 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -50,15 +50,3 @@ pkg_search_module( LIBSWORD sword )
if( NOT LIBSWORD_FOUND )
tde_message_fatal( "The sword library is required but was not found on your system." )
endif( NOT LIBSWORD_FOUND )
-
-find_path( LIBSWORD_INCLUDE_DIR swbasicfilter.h
- HINTS ${LIBSWORD_INCLUDEDIR} ${LIBSWORD_INCLUDE_DIRS}
- PATH_SUFFIXES sword
-)
-
-find_library( LIBSWORD_LIBRARY NAMES libsword sword
- HINTS ${LIBSWORD_LIBDIR} ${LIBSWORD_LIBRARY_DIRS}
-)
-
-set( LIBSWORD_LIBRARIES ${LIBSWORD_LIBRARY} )
-set( LIBSWORD_INCLUDE_DIRS ${LIBSWORD_INCLUDE_DIR} )