blob: 6ad6ec74383d52ae5fd9b5cbccec0cbb16d5998a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# - Try to find Strigi
# Once done this will define
#
# STRIGI_FOUND - system has Strigi
# STRIGI_INCLUDE_DIR - the Strigi include directory
# STRIGI_STREAMANALYZER_LIBRARY - Link these to use Strigi streamanalyzer
# STRIGI_STREAMS_LIBRARY - Link these to use Strigi streams
# at first search only in the specified directories (NO_DEFAULT_PATH)
# only if it wasn't found there, the second call to FIND_PATH/LIBRARY()
# will actually do something, Alex
include(FindLibraryWithDebug)
if(NOT STRIGI_MIN_VERSION)
set(STRIGI_MIN_VERSION "0.5.5")
endif(NOT STRIGI_MIN_VERSION)
if (WIN32)
file(TO_CMAKE_PATH "$ENV{PROGRAMFILES}" _program_FILES_DIR)
string(REPLACE "\\" "/" _program_FILES_DIR "${_program_FILES_DIR}")
endif(WIN32)
string(REPLACE "\\" "/" strigi_home "$ENV{STRIGI_HOME}")
find_path(STRIGI_INCLUDE_DIR strigi/streamanalyzer.h
PATHS
${strigi_home}/include
${_program_FILES_DIR}/strigi/include
NO_DEFAULT_PATH
)
find_path(STRIGI_INCLUDE_DIR strigi/streamanalyzer.h)
find_library_with_debug(STRIGI_STREAMANALYZER_LIBRARY
WIN32_DEBUG_POSTFIX d
NAMES streamanalyzer
PATHS
${strigi_home}/lib
${_program_FILES_DIR}/strigi/lib
NO_DEFAULT_PATH
)
find_library_with_debug(STRIGI_STREAMANALYZER_LIBRARY
WIN32_DEBUG_POSTFIX d
NAMES streamanalyzer )
find_library_with_debug(STRIGI_STREAMS_LIBRARY
WIN32_DEBUG_POSTFIX d
NAMES streams
PATHS
${strigi_home}/lib
${_program_FILES_DIR}/strigi/lib
NO_DEFAULT_PATH
)
find_library_with_debug(STRIGI_STREAMS_LIBRARY
WIN32_DEBUG_POSTFIX d
NAMES streams )
find_library_with_debug(STRIGI_STRIGIQTDBUSCLIENT_LIBRARY
WIN32_DEBUG_POSTFIX d
NAMES strigiqtdbusclient
PATHS
${strigi_home}/lib
${_program_FILES_DIR}/strigi/lib
NO_DEFAULT_PATH
)
find_library_with_debug(STRIGI_STRIGIQTDBUSCLIENT_LIBRARY
WIN32_DEBUG_POSTFIX d
NAMES strigiqtdbusclient )
if (NOT WIN32 AND NOT HAVE_STRIGI_VERSION)
include(UsePkgConfig)
pkgconfig(libstreamanalyzer _dummyIncDir _dummyLinkDir _dummyLinkFlags _dummyCflags)
# if pkgconfig found strigi, check the version, otherwise print a warning
if(_dummyLinkFlags)
exec_program(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=${STRIGI_MIN_VERSION}
libstreamanalyzer RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull )
if(NOT _return_VALUE STREQUAL "0")
message(STATUS "pkg-config query failed. did you set $PKG_CONFIG_PATH to the directory where strigi libstreamanalyzer.pc is installed?")
message(FATAL_ERROR "Didn't find strigi >= ${STRIGI_MIN_VERSION}")
else(NOT _return_VALUE STREQUAL "0")
set(HAVE_STRIGI_VERSION TRUE CACHE BOOL "Have strigi version returned by pkgconfig")
if(NOT Strigi_FIND_QUIETLY)
message(STATUS "Found Strigi >= ${STRIGI_MIN_VERSION}")
endif(NOT Strigi_FIND_QUIETLY)
endif(NOT _return_VALUE STREQUAL "0")
if (NOT STRIGI_STREAMANALYZER_LIBRARY)
find_library(STRIGI_STREAMANALYZER_LIBRARY NAMES streamanalyzer
PATHS ${_dummyLinkDir})
endif(NOT STRIGI_STREAMANALYZER_LIBRARY)
if( NOT STRIGI_STRIGIQTDBUSCLIENT_LIBRARY)
find_library(STRIGI_STRIGIQTDBUSCLIENT_LIBRARY NAMES strigiqtdbusclient
PATHS ${_dummyLinkDir})
endif(NOT STRIGI_STRIGIQTDBUSCLIENT_LIBRARY)
if (NOT STRIGI_STREAMS_LIBRARY)
find_library(STRIGI_STREAMS_LIBRARY NAMES streams
PATHS ${_dummyLinkDir})
endif(NOT STRIGI_STREAMS_LIBRARY)
if (NOT STRIGI_INCLUDE_DIR)
find_path(STRIGI_INCLUDE_DIR strigi/streamanalyzer.h
PATHS ${_dummyIncDir})
endif(NOT STRIGI_INCLUDE_DIR)
else(_dummyLinkFlags)
message(STATUS "pkgconfig didn't find strigi, couldn't check strigi version")
endif(_dummyLinkFlags)
endif (NOT WIN32 AND NOT HAVE_STRIGI_VERSION)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Strigi
"Couldn't find Strigi streams library. Set the environment variable STRIGI_HOME (or CMAKE_FIND_PREFIX_PATH if using CMake >=2.5) to the strigi install dir."
STRIGI_STREAMS_LIBRARY STRIGI_STREAMANALYZER_LIBRARY STRIGI_INCLUDE_DIR)
|