colcon / colcon-cmake

Extension for colcon to support CMake packages
http://colcon.readthedocs.io
Apache License 2.0
16 stars 25 forks source link

Colcon depends on CMake 3.10.2 on Ubuntu 18.04 #101

Closed i-khokhlov closed 3 years ago

i-khokhlov commented 3 years ago

When I'm installing python3-colcon-cmake package it changes CMake to 3.10.2. There are any opportunities to install it with CMake 3.13 or higher?

christophebedard commented 3 years ago

colcon-cmake doesn't explicitly specify a cmake version: https://github.com/colcon/colcon-cmake/blob/50b845a182916a0b5595480087b71559ee2014db/stdeb.cfg#L3

And it seems to be able to work with any version, e.g.: https://github.com/colcon/colcon-cmake/blob/50b845a182916a0b5595480087b71559ee2014db/colcon_cmake/task/cmake/build.py#L326-L339

3.10.2 is simply the version available from apt on 18.04: https://packages.ubuntu.com/bionic/cmake

i-khokhlov commented 3 years ago

Thank you! It is helped me.