[Release] Webkit2-efl-123997_0.11.46
[framework/web/webkit-efl.git] / Source / cmake / FindCFLite.cmake
1 # - Try to find the CFLite library
2 # Once done this will define
3 #
4 #  CFLITE_FOUND - System has CFLite
5 #  CFLITE_INCLUDE_DIR - The CFLite include directory
6 #  CFLITE_LIBRARIES - The libraries needed to use CFLite
7
8 FIND_PATH(CFLITE_INCLUDE_DIR NAMES CoreFoundation/CoreFoundation.h)
9
10 FIND_LIBRARY(CFLITE_LIBRARIES NAMES CFLite.lib)
11
12 INCLUDE(FindPackageHandleStandardArgs)
13
14 # handle the QUIETLY and REQUIRED arguments and set COREFOUNDATION_FOUND to TRUE if
15 # all listed variables are TRUE
16 FIND_PACKAGE_HANDLE_STANDARD_ARGS(CFLite DEFAULT_MSG CFLITE_LIBRARIES CFLITE_INCLUDE_DIR)
17
18 MARK_AS_ADVANCED(CFLITE_INCLUDE_DIR CFLITE_LIBRARIES)