1
0
Fork 0

cmake: clear the svn libraries variable if not found.

This commit is contained in:
Mathias Froehlich 2011-09-14 09:57:57 +02:00
parent 9cef27f5ca
commit 633b07dedc

View file

@ -70,4 +70,7 @@ if(HAVE_APR_CONFIG OR MSVC)
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBSVN DEFAULT_MSG LIBSVN_LIBRARIES LIBSVN_INCLUDE_DIR)
if(NOT LIBSVN_FOUND)
set(LIBSVN_LIBRARIES "")
endif(NOT LIBSVN_FOUND)
endif(HAVE_APR_CONFIG OR MSVC)