Warning, /frameworks/kdelibs4support/cmake/modules/FindLibKonq.cmake is written in an unsupported language. File is not indexed.

0001 # - Try to find konqueror library
0002 # Once done this will define
0003 #
0004 #  LIBKONQ_FOUND - system has libkonq library
0005 #  LIBKONQ_INCLUDE_DIR - the LIBKONQ include directory
0006 #  LIBKONQ_LIBRARY - the libkonq library
0007 
0008 #  Original file: FindMarbleWidget.cmake (found in digikam-0.10.0-beta2)
0009 #  copyright 2008 by Patrick Spendrin <ps_ml@gmx.de>
0010 #  Copyright (c) 2009, Alexander Neundorf, <neundorf@kde.org>
0011 #  use this file as you like
0012 #
0013 #  Modifications to find libkonq by Joachim Eibl 2008
0014 
0015 find_path(LIBKONQ_INCLUDE_DIR konq_popupmenuplugin.h )
0016 
0017 find_library(LIBKONQ_LIBRARY konq)
0018 
0019 include(FindPackageHandleStandardArgs)
0020 find_package_handle_standard_args(LIBKONQ  DEFAULT_MSG  LIBKONQ_INCLUDE_DIR LIBKONQ_LIBRARY )
0021 
0022 mark_as_advanced(LIBKONQ_INCLUDE_DIR LIBKONQ_LIBRARY)