Warning, /frameworks/kfilemetadata/cmake/FindCatDoc.cmake is written in an unsupported language. File is not indexed.

0001 # - Find CatDoc
0002 #
0003 # This module defines
0004 #  CATDOC_FOUND - whether the catdoc executable was found
0005 
0006 # SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
0007 # SPDX-License-Identifier: BSD-3-Clause
0008 
0009 find_program(CATDOC_EXE NAMES catdoc)
0010 if (CATDOC_EXE)
0011     set (CATDOC_FOUND TRUE)
0012 endif()
0013