diff --git a/cmake/modules/FindKLT.cmake b/cmake/modules/FindKLT.cmake index d01214645..d2aa773d9 100644 --- a/cmake/modules/FindKLT.cmake +++ b/cmake/modules/FindKLT.cmake @@ -64,7 +64,7 @@ else (KLT_LIBRARIES AND KLT_INCLUDE_DIRS) message(STATUS "Found KLT: ${KLT_LIBRARIES}") endif (NOT KLT_FIND_QUIETLY) else (KLT_FOUND) - message(STATUS "Could not find KLT, using internal code.") + message(STATUS "KLT not found.") endif (KLT_FOUND) mark_as_advanced(KLT_INCLUDE_DIRS KLT_LIBRARIES) diff --git a/rtengine/CMakeLists.txt b/rtengine/CMakeLists.txt index db02a9d4e..068d42a94 100644 --- a/rtengine/CMakeLists.txt +++ b/rtengine/CMakeLists.txt @@ -119,7 +119,7 @@ if (NOT USE_SYSTEM_KLT) set (KLT_LIBRARIES) endif () -include_directories (BEFORE "${CMAKE_CURRENT_BINARY_DIR}") +include_directories(BEFORE "${CMAKE_CURRENT_BINARY_DIR}") add_library(rtengine ${RTENGINESOURCEFILES}) add_dependencies(rtengine UpdateInfo)