Skip to content

Commit

Permalink
checkout .doozer.json from develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Théo DELRIEU committed Jan 9, 2017
1 parent 0730135 commit f603e76
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .doozer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"targets": {
"xenial-i386": {
"buildenv": "xenial-i386",
"builddeps": ["build-essential", "cmake"],
"buildcmd": ["mkdir cm", "cd cm", "cmake ..", "cmake --build .", "ctest --output-on-failure"]
},
"xenial-amd64": {
"buildenv": "xenial-amd64",
"builddeps": ["build-essential", "cmake"],
"buildcmd": ["mkdir cm", "cd cm", "cmake ..", "cmake --build .", "ctest --output-on-failure"]
},
"fedora24-x86_64": {
"buildenv": "fedora24-x86_64",
"builddeps": ["cmake", "make", "clang"],
"buildcmd": ["mkdir cm", "cd cm", "CXX=clang++ cmake ..", "cmake --build .", "ctest --output-on-failure"]
},
"osx": {
"buildenv": "osx",
"builddeps": ["build-essential"],
"buildcmd": ["make check"]
}
}
}

0 comments on commit f603e76

Please sign in to comment.