Revision: 40772
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40772&view=rev
Author:   starseeker
Date:     2010-09-28 20:45:49 +0000 (Tue, 28 Sep 2010)

Log Message:
-----------
Gonna probably need a find routine for SVN libraries - I suppose we really 
shouldn't be building them if they're present

Added Paths:
-----------
    rt^3/trunk/cmake/FindSVNLIBS.cmake

Added: rt^3/trunk/cmake/FindSVNLIBS.cmake
===================================================================
--- rt^3/trunk/cmake/FindSVNLIBS.cmake                          (rev 0)
+++ rt^3/trunk/cmake/FindSVNLIBS.cmake  2010-09-28 20:45:49 UTC (rev 40772)
@@ -0,0 +1,27 @@
+# Find the libraries associated with Subversion 
+#
+# Unlike the standard CMake module for finding Subversion, this module looks
+# for the libraries and headers needed to build against the subversion 
libraries
+# themselves.
+# 
+# This module defines
+#
+#  SVN_INCLUDE_DIR, where to find svn_client.h
+#  SVN_CLIENT_LIBRARY, the svn client library
+#  SVN_REPOS_LIBRARY, the svn repository library
+
+FIND_PATH(SVN_INCLUDE_DIR NAMES svn_client.h)
+
+FIND_LIBRARY(SVN_CLIENT_LIBRARY NAMES svn_client-1 svn_client-1.0)
+FIND_LIBRARY(SVN_REPOS_LIBRARY NAMES svn_repos-1 svn_repos-1.0)
+
+
+FIND_LIBRARY(APU_LIBRARY NAMES aprutil-1 aprutil-1.0)
+
+SET(PACKAGE_HANDLE_VARS SVN_INCLUDE_DIR SVN_CLIENT_LIBRARY SVN_REPOS_LIBRARY)
+
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(APR DEFAULT_MSG ${PACKAGE_HANDLE_VARS})
+
+MARK_AS_ADVANCED(SVN_INCLUDE_DIR SVN_CLIENT_LIBRARY SVN_REPOS_LIBRARY)
+


Property changes on: rt^3/trunk/cmake/FindSVNLIBS.cmake
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to