13 lines
460 B
Diff
Executable file
13 lines
460 B
Diff
Executable file
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 69e45541..19b86129 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -35,7 +35,7 @@ IF(NOT EXISTS "${APR_INCLUDE_DIR}/apr.h")
|
|
MESSAGE(FATAL_ERROR "APR include directory ${APR_INCLUDE_DIR} is not correct.")
|
|
ENDIF()
|
|
FOREACH(onelib ${APR_LIBRARIES})
|
|
- IF(NOT EXISTS ${onelib})
|
|
+ IF(${onelib} MATCHES "NOTFOUND")
|
|
MESSAGE(FATAL_ERROR "APR library ${onelib} was not found.")
|
|
ENDIF()
|
|
ENDFOREACH()
|