libcellml icon indicating copy to clipboard operation
libcellml copied to clipboard

CMake: improve target dependencies

Open agarny opened this issue 2 years ago • 0 comments

Right now, if I want to build libCellML and run the test, I need to do something like:

mkdir build
cd build
cmake -G Ninja ..
ninja
ninja test

while it would be nice if I could simply call ninja test rather than first ninja and then ninja test. In fact, it would be nice if we could build any target without first having to call ninja or something else.

agarny avatar Aug 03 '23 01:08 agarny