Why cmake >= 3.1?
#1
Hi!
Why do you require cmake >= 3.1 to build addons?
I think, you should stay compatible with at least Debian Jessie,
which ships cmake 3.0.2. This would also affect Raspbian.
I worked around this by changing the required cmake version
in several places of the source tree.
Reply
#2
Because we need options only available in newer versions.
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#3
this is how i did mase76 workaround:
find ./ -name CMakeLists.txt|xargs -I {} sed -i 's/cmake_minimum_required(VERSION 3.1)/cmake_minimum_required(VERSION 3.0)/' {}
Reply

Logout Mark Read Team Forum Stats Members Help
Why cmake >= 3.1?0