mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
cmake: add Strigi module
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
97dc221bb7
commit
1e41cb33b4
2 changed files with 51 additions and 0 deletions
|
@ -71,6 +71,7 @@ set(cmakeFiles
|
|||
FindSane.cmake
|
||||
FindSensors.cmake
|
||||
FindSharedMimeInfo.cmake
|
||||
FindStrigi.cmake
|
||||
FindSCIM.cmake
|
||||
FindSpeechd.cmake
|
||||
FindSqlite.cmake
|
||||
|
|
50
cmake/modules/FindStrigi.cmake
Normal file
50
cmake/modules/FindStrigi.cmake
Normal file
|
@ -0,0 +1,50 @@
|
|||
# - Try to find Strigi
|
||||
#
|
||||
# Once done this will define
|
||||
#
|
||||
# STRIGI_FOUND - system has Strigi
|
||||
# STRIGI_INCLUDE_DIR - the Strigi include directory
|
||||
# STRIGI_STREAMS_LIBRARY - the libraries needed to use Strigi streams
|
||||
# STRIGI_STREAMANALYZER_LIBRARY - the libraries needed to use Strigi stream analyzer
|
||||
#
|
||||
# Copyright (c) 2021, Ivailo Monev, <xakepa10@gmail.com>
|
||||
#
|
||||
# Redistribution and use is allowed according to the terms of the BSD license.
|
||||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
||||
|
||||
if(NOT WIN32)
|
||||
include(FindPkgConfig)
|
||||
pkg_check_modules(PC_LIBSTREAMS QUIET libstreams)
|
||||
pkg_check_modules(PC_LIBSTREAMANALYZER QUIET libstreamanalyzer)
|
||||
|
||||
set(STRIGI_INCLUDE_DIR ${PC_LIBSTREAMS_INCLUDE_DIRS})
|
||||
set(STRIGI_STREAMS_LIBRARY ${PC_LIBSTREAMS_LIBRARIES})
|
||||
set(STRIGI_STREAMANALYZER_LIBRARY ${PC_LIBSTREAMANALYZER_LIBRARIES})
|
||||
endif()
|
||||
|
||||
set(STRIGI_VERSION ${PC_LIBSTREAMS_VERSION})
|
||||
|
||||
if(NOT STRIGI_INCLUDE_DIR OR NOT STRIGI_STREAMS_LIBRARY OR NOT STRIGI_STREAMANALYZER_LIBRARY)
|
||||
find_path(STRIGI_INCLUDE_DIR
|
||||
NAMES strigi/strigiconfig.h
|
||||
HINTS $ENV{STRIGIDIR}/include
|
||||
)
|
||||
|
||||
find_library(STRIGI_STREAMS_LIBRARY
|
||||
NAMES streams
|
||||
HINTS $ENV{STRIGIDIR}/lib
|
||||
)
|
||||
|
||||
find_library(STRIGI_STREAMANALYZER_LIBRARY
|
||||
NAMES streamanalyzer
|
||||
HINTS $ENV{STRIGIDIR}/lib
|
||||
)
|
||||
endif()
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(Strigi
|
||||
VERSION_VAR STRIGI_VERSION
|
||||
REQUIRED_VARS STRIGI_STREAMS_LIBRARY STRIGI_STREAMANALYZER_LIBRARY STRIGI_INCLUDE_DIR
|
||||
)
|
||||
|
||||
mark_as_advanced(STRIGI_INCLUDE_DIR STRIGI_STREAMS_LIBRARY STRIGI_STREAMANALYZER_LIBRARY)
|
Loading…
Add table
Reference in a new issue