News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

creating a .chm file using doxygen

Started by pagola, August 14, 2009, 12:02:25 AM

Previous topic - Next topic

pagola

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

stahta01

#1
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)

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

C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

MortenMacFly

Topic locked due to violation of our forum rules.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]