👷 use recent cmake

parent 4327ae0b
...@@ -2,19 +2,25 @@ ...@@ -2,19 +2,25 @@
"targets": { "targets": {
"raspbian-jessie": { "raspbian-jessie": {
"buildenv": "raspbian-jessie", "buildenv": "raspbian-jessie",
"builddeps": ["build-essential", "cmake"], "builddeps": ["build-essential", "cmake", "wget"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0.tar.gz",
"tar xfz cmake-3.14.0.tar.gz",
"cd cmake-3.14.0"
"cmake . -DBUILD_TESTING=OFF",
"make -j8",
"cd .."
"mkdir build", "mkdir build",
"cd build", "cd build",
"cmake ..", "../../cmake-3.14.0/bin/cmake ..",
"make -j8", "make -j8",
"ctest -VV -j8" "ctest -VV -j8"
] ]
}, },
"fedora24-x86_64": { "fedora24-x86_64": {
"buildenv": "fedora24-x86_64", "buildenv": "fedora24-x86_64",
"builddeps": ["build-essential", "cmake"], "builddeps": ["cmake"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"mkdir build", "mkdir build",
...@@ -26,7 +32,7 @@ ...@@ -26,7 +32,7 @@
}, },
"centos7-x86_64": { "centos7-x86_64": {
"buildenv": "centos7-x86_64", "buildenv": "centos7-x86_64",
"builddeps": ["build-essential", "cmake3"], "builddeps": ["build-essential", "cmake"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"mkdir build", "mkdir build",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment