reframe
reframe copied to clipboard
Support additional CMake build system generators
At the moment ReFrame makes the assumption that CMake will generate standard UNIX makefiles. We can generalize the behaviour by using build-generator agnostic commands:
cmake -B <builddir> -S <srcdir>
cmake --build <builddir>
This would generalize: #3101