Motivation
When building with CMake and running ctime_tests, users see a message suggesting libtool, which is Autotools-specific:
Before
0$ ./build/bin/ctime_tests
1This test can only usefully be run inside valgrind because it was not compiled under msan.
2Usage: libtool --mode=execute valgrind ./ctime_tests
This is confusing for CMake users since they don’t have libtool. Reported in #1697.
Solution
Following the approach in #1778, replace the build-system-specific command with a pointer to README.md and document both methods there.
After
0$ ./build/bin/ctime_tests
1This test can only usefully be run inside valgrind because it was not compiled under msan.
2See README.md for usage instructions.
The README now includes instructions for both build systems.
Fixes #1697