2010-11-30 10:08:30 +00:00
|
|
|
# Find Subversion client libraries, and dependencies
|
|
|
|
# including APR (Apache Portable Runtime)
|
|
|
|
|
2011-01-09 00:15:29 +00:00
|
|
|
include (CheckFunctionExists)
|
|
|
|
include (CheckIncludeFile)
|
2011-09-12 09:08:02 +00:00
|
|
|
include (CheckLibraryExists)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
|
|
|
find_program(HAVE_APR_CONFIG apr-1-config)
|
|
|
|
if(HAVE_APR_CONFIG)
|
|
|
|
|
2011-01-19 12:14:59 +00:00
|
|
|
execute_process(COMMAND apr-1-config --cppflags --includes
|
2011-01-09 00:15:29 +00:00
|
|
|
OUTPUT_VARIABLE APR_CFLAGS
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
execute_process(COMMAND apr-1-config --link-ld
|
|
|
|
OUTPUT_VARIABLE RAW_APR_LIBS
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
# clean up some vars, or other CMake pieces complain
|
2011-09-11 10:42:59 +00:00
|
|
|
string(STRIP "${RAW_APR_LIBS}" APR_LIBS)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
|
|
|
else(HAVE_APR_CONFIG)
|
|
|
|
message(STATUS "apr-1-config not found, implement manual search for APR")
|
|
|
|
endif(HAVE_APR_CONFIG)
|
|
|
|
|
2011-09-12 09:08:02 +00:00
|
|
|
if(HAVE_APR_CONFIG OR MSVC)
|
2011-08-04 16:59:46 +00:00
|
|
|
find_path(LIBSVN_INCLUDE_DIR svn_client.h
|
|
|
|
HINTS
|
|
|
|
$ENV{LIBSVN_DIR}
|
|
|
|
PATH_SUFFIXES include/subversion-1
|
|
|
|
PATHS
|
|
|
|
/usr/local
|
|
|
|
/usr
|
|
|
|
/opt
|
|
|
|
)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
2011-09-12 09:08:02 +00:00
|
|
|
if (MSVC)
|
|
|
|
check_library_exists(libsvn_client-1 svn_client_checkout "${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/lib" HAVE_LIB_SVNCLIENT)
|
|
|
|
check_library_exists(libsvn_subr-1 svn_cmdline_init "${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/lib" HAVE_LIB_SVNSUBR)
|
|
|
|
check_library_exists(libsvn_ra-1 svn_ra_initialize "${MSVC_3RDPARTY_ROOT}/${MSVC_3RDPARTY_DIR}/lib" HAVE_LIB_SVNRA)
|
|
|
|
else (MSVC)
|
|
|
|
check_library_exists(svn_client-1 svn_client_checkout "" HAVE_LIB_SVNCLIENT)
|
|
|
|
check_library_exists(svn_subr-1 svn_cmdline_init "" HAVE_LIB_SVNSUBR)
|
|
|
|
check_library_exists(svn_ra-1 svn_ra_initialize "" HAVE_LIB_SVNRA)
|
|
|
|
endif (MSVC)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
2011-08-04 16:59:46 +00:00
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBSVN DEFAULT_MSG
|
|
|
|
HAVE_LIB_SVNSUBR
|
|
|
|
HAVE_LIB_SVNCLIENT
|
|
|
|
HAVE_LIB_SVNRA
|
|
|
|
LIBSVN_INCLUDE_DIR)
|
2011-01-09 00:15:29 +00:00
|
|
|
|
2011-08-04 16:59:46 +00:00
|
|
|
if(LIBSVN_FOUND)
|
|
|
|
set(LIBSVN_LIBRARIES "svn_client-1" "svn_subr-1" "svn_ra-1" ${APR_LIBS})
|
|
|
|
endif(LIBSVN_FOUND)
|
2011-09-12 09:08:02 +00:00
|
|
|
endif(HAVE_APR_CONFIG OR MSVC)
|