$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: john.groups_at_[hidden]
Date: 2008-01-05 13:24:57
Author: jtorjo
Date: 2008-01-05 13:24:57 EST (Sat, 05 Jan 2008)
New Revision: 42491
URL: http://svn.boost.org/trac/boost/changeset/42491
Log:
[logging]
v0.13.6, 6 jan 2008
- added Jamfiles for building examples/tests - not fully tested yet, since had problems buidling latest boost from SVN
Added:
   sandbox/logging/lib/logging/samples/basic_usage/Jamfile.v2   (contents, props changed)
   sandbox/logging/lib/logging/samples/scenarios/Jamfile.v2   (contents, props changed)
   sandbox/logging/lib/logging/tests/Jamfile.v2   (contents, props changed)
   sandbox/logging/lib/logging/tests/test_tss/Jamfile.v2   (contents, props changed)
Properties modified: 
   sandbox/logging/lib/logging/samples/scenarios/   (props changed)
Text files modified: 
   sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp
==============================================================================
--- sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp	(original)
+++ sandbox/logging/boost/logging/detail/raw_doc/changelog.hpp	2008-01-05 13:24:57 EST (Sat, 05 Jan 2008)
@@ -1,7 +1,8 @@
 /** 
 @page page_changelog Changelog
 
-_at_section changelog_cur_ver Current Version: v0.13.5, 5 jan 2008
+@section changelog_cur_ver Current Version: v0.13.6, 6 jan 2008
+- added Jamfiles for building examples/tests - not fully tested yet, since had problems buidling latest boost from SVN
 - added docs about caching messages
 - can cache messages before initialization of logs
 - gather classes now have msg_type instead of param (msg_type contains the type of the returned msg - without const or &)
Added: sandbox/logging/lib/logging/samples/basic_usage/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/logging/lib/logging/samples/basic_usage/Jamfile.v2	2008-01-05 13:24:57 EST (Sat, 05 Jan 2008)
@@ -0,0 +1,20 @@
+# Copyright (c) John Torjo 2008
+# Boost Logging Library Build Examples Jamfile
+#
+#  Distributed under the Boost Software License, Version 1.0. (See
+#  accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt)
+
+project 
+    : requirements 
+      <include>../../../.. 
+      <include>$(BOOST_ROOT) 
+      <include>D:/john/code/latest_boost 
+      <library>/boost/thread//boost_thread 
+      <library>/boost/filesystem//boost_filesystem 
+    ;
+
+exe basic_usage
+    : [ glob *.cpp ] 
+    ;
+
Added: sandbox/logging/lib/logging/samples/scenarios/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/logging/lib/logging/samples/scenarios/Jamfile.v2	2008-01-05 13:24:57 EST (Sat, 05 Jan 2008)
@@ -0,0 +1,71 @@
+# Copyright (c) John Torjo 2008
+# Boost Logging Library Build Examples Jamfile
+#
+#  Distributed under the Boost Software License, Version 1.0. (See
+#  accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt)
+
+project 
+    : requirements 
+      <include>../../../.. 
+      <include>$(BOOST_ROOT) 
+      <include>D:/john/code/latest_boost 
+      <library>/boost/thread//boost_thread 
+    ;
+
+exe cache_before_init
+    : cache_before_init.cpp
+    ;
+
+exe custom_fmt_dest
+    : custom_fmt_dest.cpp
+    ;
+
+exe ded_loger_one_filter
+    : ded_loger_one_filter.cpp
+    ;
+
+exe fastest_no_ostr_like
+    : fastest_no_ostr_like.cpp
+    ;
+
+exe fastest_use_ostr_like
+    : fastest_use_ostr_like.cpp
+    ;
+
+exe mul_levels_mul_logers
+    : mul_levels_mul_logers.cpp
+    ;
+
+exe mul_levels_one_logger
+    : mul_levels_one_logger.cpp
+    ;
+
+exe mul_loggers_one_filter
+    : mul_loggers_one_filter.cpp
+    ;
+
+exe no_levels_with_route
+    : no_levels_with_route.cpp
+    ;
+
+exe one_loger_one_filter
+    : one_loger_one_filter.cpp
+    ;
+
+exe ts_loger_one_filter
+    : ts_loger_one_filter.cpp
+    ;
+
+exe use_tss_ostringstream
+    : use_tss_ostringstream.cpp
+    ;
+
+exe using_tags
+    : using_tags.cpp
+    ;
+
+exe your_scenario
+    : your_scenario.cpp
+    ;
+
Added: sandbox/logging/lib/logging/tests/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/logging/lib/logging/tests/Jamfile.v2	2008-01-05 13:24:57 EST (Sat, 05 Jan 2008)
@@ -0,0 +1,26 @@
+# Copyright (c) John Torjo 2008
+# Boost Logging Library Build Tests Jamfile
+#
+#  Distributed under the Boost Software License, Version 1.0. (See
+#  accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt)
+
+project 
+    : requirements 
+      <include>../../../.. 
+      <include>$(BOOST_ROOT) 
+      <include>D:/john/code/latest_boost 
+      <library>/boost/thread//boost_thread 
+    ;
+
+# bring in rules for testing
+import testing ;
+
+test-suite log_tests :
+    [ run test_log_output/test_log_output.cpp ]
+    [ run test_simple_tss/test_simple_tss.cpp ]
+    [ run test_ts_resouce_with_cache/test_ts_resource.cpp ]
+#    [ run  ]
+#    [ run  ]
+    ;
+
Added: sandbox/logging/lib/logging/tests/test_tss/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/logging/lib/logging/tests/test_tss/Jamfile.v2	2008-01-05 13:24:57 EST (Sat, 05 Jan 2008)
@@ -0,0 +1,20 @@
+# Copyright (c) John Torjo 2008
+# Boost Logging Library Build Examples Jamfile
+#
+#  Distributed under the Boost Software License, Version 1.0. (See
+#  accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt)
+
+project 
+    : requirements 
+      <include>../../../.. 
+      <include>.
+      <include>$(BOOST_ROOT) 
+      <include>D:/john/code/latest_boost 
+      <library>/boost/thread//boost_thread 
+    ;
+
+exe test_tss
+    : test_tss.cpp test_tss_objects.cpp test_tss_on_end_delete.cpp
+    ;
+