Warning, /frameworks/kdelibs4support/src/kdecore/ConfigureChecks.cmake is written in an unsupported language. File is not indexed.

0001 include(CheckFunctionExists)
0002 include(CheckLibraryExists)
0003 include(CheckTypeSize)
0004 include(CheckStructMember)
0005 include(CheckIncludeFile)
0006 include(CheckIncludeFiles)
0007 
0008 check_function_exists(backtrace   HAVE_BACKTRACE)
0009 
0010 check_include_files(sys/time.h    HAVE_SYS_TIME_H)
0011 check_include_files(time.h        HAVE_TIME_H)
0012 
0013 check_type_size(time_t SIZEOF_TIME_T)
0014 
0015 check_struct_member(tm tm_zone time.h HAVE_STRUCT_TM_TM_ZONE)
0016 check_struct_member(tm tm_gmtoff time.h HAVE_TM_GMTOFF)
0017 
0018 ## Should this be find_package(Gettext) instead, which seems more complete?
0019 find_package(Libintl)
0020 set_package_properties(LIBINTL PROPERTIES DESCRIPTION "Libintl" URL "http://www.gnu.org/software/gettext"
0021                        TYPE REQUIRED PURPOSE "Enables KDE to be available in many different languages")
0022