I need to create a glob expression (For file( GLOB_RECURSE ) ) that will find files with the following extensions:<div><br></div><div>*.h</div><div>*.hpp</div><div>*.ipp</div><div><br></div><div>How can I format my glob expression to do this? I know for HPP and IPP files, my glob expression would be:</div>
<div><br></div><div>*.[hi]pp</div><div><br></div><div>However, this ignores all H files.</div>