Warning, /frameworks/kdelibs4support/cmake/modules/FindKorundum.cmake is written in an unsupported language. File is not indexed.

0001 # - Find Korundum - the KDE Ruby bindings
0002 #
0003 # This module finds if Korundum is installed.
0004 # It defines the following variables:
0005 #  KORUNDUM_PATH - the path to the korundum ruby file
0006 #  KORUNDUM_FOUND - true if it has been found
0007 
0008 # Copyright (c) 2006, Egon Willighagen, <egonw@users.sf.net>
0009 #
0010 # Redistribution and use is allowed according to the terms of the BSD license.
0011 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
0012 
0013 find_path(KORUNDUM_PATH Korundum.rb /usr/lib/ruby/1.8)
0014 
0015 include(FindPackageHandleStandardArgs)
0016 find_package_handle_standard_args(Korundum  DEFAULT_MSG  KORUNDUM_PATH)
0017 
0018 # just for compat.:
0019 set(Korumdum_PATH ${KORUNDUM_PATH})
0020 set(Korumdum_FOUND ${KORUNDUM_FOUND})