It's my first time building a library manually so I just want to verify something. Sometimes, I run Cmake as:
cmake -SOME_SWITCH=ON ..
And this runs fairly quickly. However, after that, I run:
sudo make
Which takes a really long time (30-40 Minutes).
So my question is, if I do after that CMake again with:
cmake -SOME_SWITCH=ON -SWITCH2=ON ..
Do I need to Make again? And if so, is there a way to not have to go through the entire make again (I.e. only compile the new entries?)
Thanks!