From 89d494acc0ba9da8f2da7a0795d53227714f1a22 Mon Sep 17 00:00:00 2001 From: khizmax Date: Thu, 18 Sep 2014 19:58:58 +0400 Subject: [PATCH] Make tools directory, move some helper scripts to it --- make_docs.bat | 6 ------ brush_cds.pl => tools/brush_cds.pl | 10 +++++----- tools/make_docs.bat | 5 +++++ 3 files changed, 10 insertions(+), 11 deletions(-) delete mode 100644 make_docs.bat rename brush_cds.pl => tools/brush_cds.pl (80%) create mode 100644 tools/make_docs.bat diff --git a/make_docs.bat b/make_docs.bat deleted file mode 100644 index 2db6c016..00000000 --- a/make_docs.bat +++ /dev/null @@ -1,6 +0,0 @@ -rm -fr doc -md doc -set DOXYPRJ_ROOT=. -%DOXYGEN_PATH%\bin\doxygen doxygen\cds.doxy > doxygen\doxygen.log 2>&1 -cp -f doxygen/index.html doc/index.html - diff --git a/brush_cds.pl b/tools/brush_cds.pl similarity index 80% rename from brush_cds.pl rename to tools/brush_cds.pl index bd98cc05..a53090bb 100644 --- a/brush_cds.pl +++ b/tools/brush_cds.pl @@ -11,11 +11,11 @@ exit ; sub brush() { - processDir( "./cds" ) ; - processDir( "./src" ) ; - processDir( "./tests/test-hdr" ) ; - processDir( "./tests/unit" ) ; - processDir( "./tests/cppunit" ) ; + processDir( "../cds" ) ; + processDir( "../src" ) ; + processDir( "../tests/test-hdr" ) ; + processDir( "../tests/unit" ) ; + processDir( "../tests/cppunit" ) ; } sub processDir( $ ) diff --git a/tools/make_docs.bat b/tools/make_docs.bat new file mode 100644 index 00000000..48bac73e --- /dev/null +++ b/tools/make_docs.bat @@ -0,0 +1,5 @@ +rm -fr doc +md doc +set DOXYPRJ_ROOT=. +%DOXYGEN_PATH%\bin\doxygen ..\doxygen\cds.doxy > ..\doxygen\doxygen.log 2>&1 +cp -f ../doxygen/index.html ../doc/index.html -- 2.34.1