diff dox_task.pl @ 7:fa7a99c2d079

dox library templates and schemas
author sergey
date Wed, 14 May 2014 01:22:21 +0400
parents
children d997ff96acf1
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dox_task.pl	Wed May 14 01:22:21 2014 +0400
@@ -0,0 +1,20 @@
+#!/usr/bin/perl -w
+use lib '.';
+use config;
+use config::bootstrap;
+use strict;
+use IMPL::Config;
+
+use IMPL::require {
+	DoxygenTask => 'Benzin::Doxygen::MakedocTask',
+	DoxModel => 'Benzin::Doxygen::Model',
+	InlineFactory => 'IMPL::Object::InlineFactory'
+};
+
+my $task = DoxygenTask->new(
+	%config::doxSource
+);
+
+$task->DoWork();
+
+print "completed\n";
\ No newline at end of file