Warning, /office/calligra/cmake/modules/FindPopplerXPDFHeaders.cmake is written in an unsupported language. File is not indexed.

0001 # - Try to find the poppler not-officially-supported XPDF headers
0002 # Once done this will define
0003 #
0004 #  PopplerXPDFHeaders_FOUND - system has poppler not-officially-supported XPDF headers
0005 #
0006 
0007 find_package(Poppler COMPONENTS Core)
0008 
0009 if(Poppler_Core_FOUND)
0010     find_path(POPPLER_XPDF_HEADERS poppler-config.h
0011         HINTS ${Poppler_INCLUDE_DIRS}
0012     )
0013 
0014     if(POPPLER_XPDF_HEADERS)
0015         set(PopplerXPDFHeaders_FOUND TRUE)
0016     endif()
0017 endif()