Warning, /multimedia/amarok/cmake/modules/FindIfp.cmake is written in an unsupported language. File is not indexed.
0001 # - Find IFP library 0002 # Find the native IFP includes and library 0003 # This module defines 0004 # IFP_INCLUDE_DIR, where to find ifp.h, etc. 0005 # IFP_LIBRARIES, libraries to link against to use IFP. 0006 # IFP_FOUND, If false, do NOT try to use IFP. 0007 # also defined, but NOT for general use are 0008 # IFP_LIBRARY, where to find the IFP library. 0009 0010 if (IFP_INCLUDE_DIR) 0011 # Already in cache, be silent 0012 set(Ifp_FIND_QUIETLY TRUE) 0013 endif () 0014 0015 find_path(IFP_INCLUDE_DIR ifp.h 0016 ) 0017 0018 find_library(IFP_LIBRARY ifp 0019 ) 0020 0021 include(FindPackageHandleStandardArgs) 0022 find_package_handle_standard_args(IFP DEFAULT_MSG IFP_LIBRARY IFP_INCLUDE_DIR) 0023 0024 mark_as_advanced(IFP_INCLUDE_DIR IFP_LIBRARY)