I am setting up a new project that I need to build with cmake. It has the following structure:<br><br>/lib<br><br>/registration<br>/registration/typeA<br>/registration/typeB<br><br>/validation<br><br><br><br><br>1) In /registration/typeA I need a main file to run the typeA application.<br>
2) In /registration/typeB I need a main file to run the typeB application.<br>3) In /validation I need a main file to run the validation application.<br>4) In / I need a main file to run the all the above application.<br>
<br>As I understand I therefore need a CMakeLists.txt file in:<br><br>/<br>


/registration/typeA/<br>
/registration/typeB/<br>

/validation/<br><br>totalling 4 CMakeLists.txt files in total. Am I doing it right?<br><br><br>
<br><br><br>