Hi,<div><br></div><div>I&#39;ve currently been running doxygen through execute_process() in CMAKE. I&#39;ve set it up like this:</div><div><br></div><div><div><br></div><div>        find_package( Doxygen REQUIRED )</div><div>
<br></div><div>        execute_process(</div><div>            COMMAND &quot;${DOXYGEN_EXECUTABLE}&quot; &quot;${cmake_includes}/project.dox&quot;</div><div>            WORKING_DIRECTORY &quot;${documentation_dir}&quot;</div>
<div>            OUTPUT_FILE &quot;${documentation_dir}/doxygen_log.txt&quot;</div><div>            ERROR_FILE &quot;${documentation_dir}/doxygen_log.txt&quot;</div><div>        )</div><div><br></div><div>However, this does not work. Doxygen is never run and the doxygen_log.txt file has no contents. When I make OUTPUT_FILE and ERROR_FILE reference 2 different file names, it works fine. However, I want stderr and stdout to both output to the same file in the proper order. It is important that I see what &quot;output&quot; occurred before a specific &quot;error&quot;, and I cannot do this if they are in 2 different files.</div>
<div><br></div><div>How can I make this work?</div></div>