Warning, /frameworks/kcoreaddons/cmake/FindFAM.cmake is written in an unsupported language. File is not indexed.

0001 # - Try to find the FAM directory notification library
0002 # Once done this will define
0003 #
0004 #  FAM_FOUND - system has FAM
0005 #  FAM_INCLUDE_DIR - the FAM include directory
0006 #  FAM_LIBRARIES - The libraries needed to use FAM
0007 
0008 # SPDX-FileCopyrightText: 2006 Alexander Neundorf <neundorf@kde.org>
0009 #
0010 # SPDX-License-Identifier: BSD-3-Clause
0011 
0012 
0013 FIND_PATH(FAM_INCLUDE_DIR fam.h)
0014 
0015 FIND_LIBRARY(FAM_LIBRARIES NAMES fam )
0016 
0017 INCLUDE(FindPackageHandleStandardArgs)
0018 FIND_PACKAGE_HANDLE_STANDARD_ARGS(FAM DEFAULT_MSG FAM_INCLUDE_DIR FAM_LIBRARIES )
0019 
0020 set_package_properties(FAM PROPERTIES
0021     URL "http://oss.sgi.com/projects/fam"
0022     DESCRIPTION "File alteration notification support via a separate service"
0023 )
0024 
0025 MARK_AS_ADVANCED(FAM_INCLUDE_DIR FAM_LIBRARIES)
0026