👷 use recent cmake
This commit is contained in:
parent
4327ae0bef
commit
a72ac18514
1 changed files with 10 additions and 4 deletions
14
.doozer.json
14
.doozer.json
|
@ -2,19 +2,25 @@
|
|||
"targets": {
|
||||
"raspbian-jessie": {
|
||||
"buildenv": "raspbian-jessie",
|
||||
"builddeps": ["build-essential", "cmake"],
|
||||
"builddeps": ["build-essential", "cmake", "wget"],
|
||||
"buildcmd": [
|
||||
"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",
|
||||
"cd build",
|
||||
"cmake ..",
|
||||
"../../cmake-3.14.0/bin/cmake ..",
|
||||
"make -j8",
|
||||
"ctest -VV -j8"
|
||||
]
|
||||
},
|
||||
"fedora24-x86_64": {
|
||||
"buildenv": "fedora24-x86_64",
|
||||
"builddeps": ["build-essential", "cmake"],
|
||||
"builddeps": ["cmake"],
|
||||
"buildcmd": [
|
||||
"uname -a",
|
||||
"mkdir build",
|
||||
|
@ -26,7 +32,7 @@
|
|||
},
|
||||
"centos7-x86_64": {
|
||||
"buildenv": "centos7-x86_64",
|
||||
"builddeps": ["build-essential", "cmake3"],
|
||||
"builddeps": ["build-essential", "cmake"],
|
||||
"buildcmd": [
|
||||
"uname -a",
|
||||
"mkdir build",
|
||||
|
|
Loading…
Reference in a new issue