<font size=2 face="sans-serif">Is this the best way to generate a comment
bar, such as this:</font>
<br>
<br><font size=2 face="sans-serif">////////////////////////////////////////////////////////////////////////////////</font>
<br>
<br><font size=2 face="sans-serif">or this:</font>
<br>
<br><font size=2 face="sans-serif">--------------------------------------------------------------------------------</font>
<br>
<br><font size=2 face="sans-serif">or this:</font>
<br>
<br><font size=2 face="sans-serif">################################################################################</font>
<br>
<br><font size=2>IF(OUTPUT_FILE_EXT MATCHES &quot;^\\.h|\\.cpp$&quot;)</font>
<br><font size=2>&nbsp; &nbsp;SET(COMMENT_CHARACTER &quot;/&quot;)</font>
<br><font size=2>ELSEIF(OUTPUT_FILE_EXT MATCHES &quot;^\\.sql$&quot;)</font>
<br><font size=2>&nbsp; &nbsp;SET(COMMENT_CHARACTER &quot;-&quot;)</font>
<br><font size=2>ELSEIF(OUTPUT_FILE_EXT MATCHES &quot;^\\.nsi|\\.nsh$&quot;)</font>
<br><font size=2>&nbsp; &nbsp;SET(COMMENT_CHARACTER &quot;#&quot;)</font>
<br><font size=2>ELSE()</font>
<br><font size=2>&nbsp; &nbsp;MESSAGE(WARNING &quot;Unknown file type&quot;)</font>
<br><font size=2>ENDIF()</font>
<br>
<br><font size=2>STRING(RANDOM LENGTH 80 ALPHABET &quot;${COMMENT_CHARACTER}&quot;
COMMENT_BAR)</font>
<br>
<br><font size=2 face="sans-serif">The only reason I ask is that is seems
weird to use the STRING(RANDOM function to get this done.</font>
<br><font size=2 face="sans-serif">-------------------------------------------------------------<br>
Aaron Wright</font>
<br>