Hi,<br><br>I have a small language (written in C++) I&#39;d like to convert to cmake, but I&#39;m having a hard time figuring out what to do in which CMakeLists.txt file.<br><br>Basically, I have the following directory structure:<br>
<br>nvm/<br>--tools/<br>
----compiler/<br>------(C++ source)<br>----generator/<br>------(C++ source)<br>--n/<br>----(&quot;.n&quot; source)<br>--src/<br>----(C++ source)<br><br>Roughly, a build should go like this:<br>1. Compile the compiler (nvm/tools/compiler/*.cpp)<br>
2. Use compiler to compile standard library (nvm/n/.../*.n) to <a href="http://framework.nc">framework.nc</a><br>3. Compile the generator (nvm/tools/generator/*.cpp)<br>4. Use generator to generate framework.cpp and framework.h, from the compiled standard library (<a href="http://framework.nc">framework.nc</a>)<br>
5. Compile vm (src/*.cpp &amp; framework.cpp)<br><br>Right now, I&#39;m a bit confused as to which CMakeLists.txt file the rules for steps 2 and 4 should go.  <br><br>Thanks!<br><br>Joshua<br>