diff options
-rw-r--r-- | modules/FindQCA2.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindQCA2.cmake b/modules/FindQCA2.cmake index de855511..02c78a78 100644 --- a/modules/FindQCA2.cmake +++ b/modules/FindQCA2.cmake @@ -45,13 +45,13 @@ else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES) set(QCA2_FOUND TRUE) else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES) if (NOT QCA2_INCLUDE_DIR) - message(STATUS "Could NOT find QCA2 includes in ${_Qca2IncDir}") + message(STATUS "Could NOT find QCA2 includes") endif (NOT QCA2_INCLUDE_DIR) if (NOT QCA2_LIBRARIES) - message(STATUS "Could NOT find QCA2 libraries in ${_Qca2LinkDir}") + message(STATUS "Could NOT find QCA2 libraries") endif (NOT QCA2_LIBRARIES) if (QCA2_FIND_REQUIRED) - message(SEND_ERROR "Could NOT find QCA2") + message(FATAL_ERROR "Could NOT find QCA2") endif (QCA2_FIND_REQUIRED) endif (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES) |