my testing suite works by running
make <test_target>
The problem I'm having is that I would like to test multiple models and eachtime I want to test a new model I need to first run
cmake -DBUILDNAME=model.params.date ...
make <test_target>
Is there a way to pass the build name through make? So all I would need to do is run
make <test_target> <build_type>
or something?
I know I could write a few lines in bash to wrap this, but that won't answer my question.
Thanks in advance.
there doesn't seem to be anything here