Warning, /frameworks/kio/cmake/FindRubyExe.cmake is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2019 Harald Sitter <sitter@kde.org>
0002 #
0003 # SPDX-License-Identifier: BSD-3-Clause
0004 
0005 # FindRuby from cmake is also covering ruby dev headers and stuff. For when
0006 # you only need ruby, this only finds ruby!
0007 
0008 find_program(RubyExe_EXECUTABLE ruby)
0009 
0010 include(FindPackageHandleStandardArgs)
0011 find_package_handle_standard_args(RubyExe
0012     FOUND_VAR
0013         RubyExe_FOUND
0014     REQUIRED_VARS
0015         RubyExe_EXECUTABLE
0016 )