Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: pagola on August 14, 2009, 12:02:25 am

Title: creating a .chm file using doxygen
Post by: pagola on August 14, 2009, 12:02:25 am
hey folks

i am new to doxygen usage and i am trying to create some help files. I have managed to change my source code documentation to use the proper doxygen tags but now i am wondering how do i create a .chm file. I have downloaded microsoft html help workshop but i cant figure out the path. I know i need to change the doxyfile configuration file to include the path where my help compiler is? hhc.exe file
can someone please help me any thoughts will be appreciated
Title: Re: creating a .chm file using doxygen
Post by: stahta01 on August 14, 2009, 12:06:59 am
Has little to do with Code::Blocks.

Try wxWidgets docs.

http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk/docs/tech/tn0003.txt
http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk/docs/doxygen/regen.bat

My batch file (make_wx29x_doxy_chm.bat)
Code
REM http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk/docs/tech/tn0003.txt
REM http://www.stack.nl/~dimitri/doxygen/commands.html

SET PATH=C:\Program Files (x86)\doxygen\bin;C:\Program Files (x86)\Graphviz 2.21\bin;%PATH%
SET HHC_PATH=C:\Program Files (x86)\HTML Help Workshop

CD wxWidgets-2.9.x

setlocal
set WX=%CD%

cd %WX%\docs\doxygen
CALL regen.bat
TYPE doxygen.log

PAUSE

Title: Re: creating a .chm file using doxygen
Post by: MortenMacFly on August 14, 2009, 11:17:09 am
Topic locked due to violation of our forum rules.