Boost logo

Boost-Commit :

From: dwalker07_at_[hidden]
Date: 2008-08-21 01:19:37


Author: dlwalker
Date: 2008-08-21 01:19:36 EDT (Thu, 21 Aug 2008)
New Revision: 48278
URL: http://svn.boost.org/trac/boost/changeset/48278

Log:
Added jam-files for building and testing this library, but I don't know enough to make them work; will try later
Added:
   sandbox/md5/libs/coding/build/
   sandbox/md5/libs/coding/build/Jamfile.v2 (contents, props changed)
   sandbox/md5/libs/coding/test/Jamfile.v2 (contents, props changed)

Added: sandbox/md5/libs/coding/build/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/md5/libs/coding/build/Jamfile.v2 2008-08-21 01:19:36 EDT (Thu, 21 Aug 2008)
@@ -0,0 +1,23 @@
+# Boost.Coding build script -------------------------------------------------//
+
+# (C) Copyright Daryle Walker 2008. Distributed under the Boost Software
+# License, Version 1.0. (See the accompanying file LICENSE_1_0.txt or a copy
+# at <http://www.boost.org/LICENSE_1_0.txt>.)
+
+# See <http://www.boost.org/libs/coding> for documentation.
+
+# This is based from the Boost.Signal build script.
+# Warning: UNTESTED
+
+project boost/coding
+ : source-location ../src
+ ;
+
+# Base names of the source files for libboost_coding
+SOURCES = md5 ;
+
+lib boost_coding
+ : $(SOURCES).cpp
+ ;
+
+#boost-install boost_coding ;

Added: sandbox/md5/libs/coding/test/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/md5/libs/coding/test/Jamfile.v2 2008-08-21 01:19:36 EDT (Thu, 21 Aug 2008)
@@ -0,0 +1,26 @@
+# Boost.Coding test script --------------------------------------------------//
+
+# (C) Copyright Daryle Walker 2008. Distributed under the Boost Software
+# License, Version 1.0. (See the accompanying file LICENSE_1_0.txt or a copy
+# at <http://www.boost.org/LICENSE_1_0.txt>.)
+
+# See <http://www.boost.org/libs/coding> for documentation.
+
+# This is based from Kevin Sopp's crypto test-build script.
+# Warning: UNTESTED
+
+alias boost_test : $(BOOST_ROOT)/libs/test/build//boost_unit_test_framework/<link>shared ;
+
+use-project /boost/coding : ../build ;
+project /boost/coding/test
+ : requirements
+ <include>../../..
+# <library>../build//boost_coding
+ <link>static
+ <define>BOOST_TEST_DYN_LINK
+ ;
+
+unit-test md5
+ : md5_digest_test.cpp md5_computer_test.cpp md5_bugs_test.cpp
+ boost_test
+ ;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk