Author Topic: creating a .chm file using doxygen  (Read 12427 times)

pagola

  • Guest
creating a .chm file using doxygen
« 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

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: creating a .chm file using doxygen
« Reply #1 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

« Last Edit: August 14, 2009, 12:10:47 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: creating a .chm file using doxygen
« Reply #2 on: August 14, 2009, 11:17:09 am »
Topic locked due to violation of our forum rules.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ