X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=cmake%2FFindIndicateQt.cmake;fp=cmake%2FFindIndicateQt.cmake;h=0000000000000000000000000000000000000000;hp=5279c06dce0cec23b74a4f20fb168a6f24192e68;hb=c8102e95706ac43e88364bb1fa3bef69e0145c84;hpb=597b99c857470648f5d3950a0a0835bd34294b0a diff --git a/cmake/FindIndicateQt.cmake b/cmake/FindIndicateQt.cmake deleted file mode 100644 index 5279c06d..00000000 --- a/cmake/FindIndicateQt.cmake +++ /dev/null @@ -1,28 +0,0 @@ -# CMake wrapper for finding indicate-qt -# This is not very flexible (e.g. no version check), but allows using -# a normal find_package call and thus support for feature_summary -# -# (C) 2014 by the Quassel Project -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. -# -# Once found, sets the standard set of variables: -# INDICATEQT_FOUND - IndicateQt available in the system -# INDICATEQT_LIBRARIES - Libraries to link with -# INDICATEQT_INCLUDE_DIRS - Include directories containing the headers -# -############################################################################## - -include(FindPackageHandleStandardArgs) - -if (USE_QT4) - # requires PkgConfig for now; patches for finding it directly welcome! - find_package(PkgConfig QUIET) - if (PKG_CONFIG_FOUND) - pkg_check_modules(INDICATEQT QUIET indicate-qt>=0.2.1) - endif() -endif() - -find_package_handle_standard_args(IndicateQt DEFAULT_MSG INDICATEQT_LIBRARIES INDICATEQT_INCLUDE_DIRS) -mark_as_advanced(INDICATEQT_LIBRARIES INDICATEQT_INCLUDE_DIRS)