Warning, /education/kig/KigConfigureChecks.cmake is written in an unsupported language. File is not indexed.
0001 kde_enable_exceptions() 0002 include(CheckIncludeFiles) 0003 include(CheckFunctionExists) 0004 0005 check_include_files(ieeefp.h HAVE_IEEEFP_H) 0006 0007 set(CMAKE_REQUIRED_INCLUDES "math.h") 0008 set(CMAKE_REQUIRED_LIBRARIES m) 0009 check_function_exists(trunc HAVE_TRUNC) 0010 set(CMAKE_REQUIRED_INCLUDES) 0011 set(CMAKE_REQUIRED_LIBRARIES) 0012 0013 # at the end, output the configuration 0014 configure_file( 0015 ${CMAKE_CURRENT_SOURCE_DIR}/config-kig.h.cmake 0016 ${CMAKE_CURRENT_BINARY_DIR}/config-kig.h 0017 ) 0018 0019