- Code: Select all
# Configure
#
cd build
cmake \
-DBUILD_TESTING=ON \
... some options ... \
../src
# Compile
make
# Test
make test
When I configure and build ScaLAPACK in a similar manner, the library builds but the tests are not found. Is there a known way to get the tests running under CMake?

