okular/cmake/modules/modules/FindCHM.cmake
Pino Toscano 0b29b076b8 Some work on the chm generator:
- correctly find the chm library
- make the chm generator and the kio-msits compile and link
- some qt3/kde3 support less

svn path=/branches/work/kde4/playground/graphics/cmake/; revision=523938
2006-03-29 14:33:15 +00:00

42 lines
883 B
CMake

# - Try to find the chm library
# Once done this will define
#
# CHM_FOUND - system has the chm library
# CHM_INCLUDE_DIR - the chm include directory
# CHM_LIBRARY - Link this to use the chm library
#
include(CheckLibraryExists)
# reset vars
set(CHM_INCLUDE_DIR)
set(CHM_LIBRARY)
FIND_PATH(CHM_INCLUDE_DIR chm_lib.h
/usr/local/include
/usr/include
${GNUWIN32_DIR}/include
)
find_library(CHM_LIBRARY NAMES chm
PATHS
/usr/lib
/usr/local/lib
${GNUWIN32_DIR}/lib
)
if(CHM_INCLUDE_DIR AND CHM_LIBRARY)
set(CHM_FOUND TRUE)
endif(CHM_INCLUDE_DIR AND CHM_LIBRARY)
if (CHM_FOUND)
if (NOT CHM_FIND_QUIETLY)
message(STATUS "Found CHM: ${CHM_LIBRARY}")
endif (NOT CHM_FIND_QUIETLY)
else (CHM_FOUND)
if (CHM_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find CHM")
endif (CHM_FIND_REQUIRED)
endif (CHM_FOUND)
MARK_AS_ADVANCED(CHM_INCLUDE_DIR CHM_LIBRARY)