morganstanley/modern-cpp-kafka

Minimum CMake version is too low.

vadtec opened this issue · 1 comments

CMakeLists.txt (main dir, tests/unit/) use cmake_path which is available from CMake 3.20 onward.

cmake_minimum_required(VERSION "3.8")

That should really be updated so that CMake will error out rather than blowing up with errors.

Good catch!
Thank you, @vadtec!
Just fixed it with #199