Warning, /system/ksystemlog/cmake/FindAudit.cmake is written in an unsupported language. File is not indexed.

0001 # - Try to find Audit library.
0002 # Once done this will define
0003 #
0004 #  AUDIT_FOUND - system has Audit
0005 # Redistribution and use is allowed according to the terms of the BSD license.
0006 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
0007 #
0008 
0009 # use pkg-config to get the directories and then use these values
0010 # in the FIND_PATH() and FIND_LIBRARY() calls
0011 find_package(PkgConfig)
0012 pkg_check_modules(PC_AUDIT QUIET IMPORTED_TARGET audit)
0013 
0014 set(AUDIT_FOUND ${PC_AUDIT_FOUND})
0015 
0016 set_package_properties(Audit PROPERTIES
0017   DESCRIPTION "Dynamic library for security auditing")