summaryrefslogtreecommitdiff
path: root/Source/cmake/FindCFLite.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmake/FindCFLite.cmake')
-rw-r--r--Source/cmake/FindCFLite.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmake/FindCFLite.cmake b/Source/cmake/FindCFLite.cmake
index 4d60ec4c4..71e756838 100644
--- a/Source/cmake/FindCFLite.cmake
+++ b/Source/cmake/FindCFLite.cmake
@@ -5,14 +5,14 @@
# CFLITE_INCLUDE_DIR - The CFLite include directory
# CFLITE_LIBRARIES - The libraries needed to use CFLite
-FIND_PATH(CFLITE_INCLUDE_DIR NAMES CoreFoundation/CoreFoundation.h)
+find_path(CFLITE_INCLUDE_DIR NAMES CoreFoundation/CoreFoundation.h)
-FIND_LIBRARY(CFLITE_LIBRARIES NAMES CFLite.lib)
+find_library(CFLITE_LIBRARIES NAMES CFLite.lib)
-INCLUDE(FindPackageHandleStandardArgs)
+include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set COREFOUNDATION_FOUND to TRUE if
# all listed variables are TRUE
FIND_PACKAGE_HANDLE_STANDARD_ARGS(CFLite DEFAULT_MSG CFLITE_LIBRARIES CFLITE_INCLUDE_DIR)
-MARK_AS_ADVANCED(CFLITE_INCLUDE_DIR CFLITE_LIBRARIES)
+mark_as_advanced(CFLITE_INCLUDE_DIR CFLITE_LIBRARIES)