fix: update cmake, meson, task

This commit is contained in:
Amin Yahyaabadi 2022-03-01 14:01:08 -08:00
parent c06385012c
commit bc71d0580a
3 changed files with 11 additions and 11 deletions

2
dist/setup_cpp.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,16 +1,16 @@
const DefaultVersions: Record<string, string> = {
llvm: "13.0.0",
llvm: "13.0.0", // https://github.com/llvm/llvm-project/releases
clangtidy: "13.0.0",
clangformat: "13.0.0",
ninja: "1.10.2",
cmake: "3.22.1",
gcovr: "5.0",
conan: "1.45.0",
meson: "0.61.1",
ninja: "1.10.2", // https://github.com/ninja-build/ninja/releases
cmake: "3.22.2", // https://github.com/Kitware/CMake/releases
gcovr: "5.0", // https://pypi.org/project/gcovr/
conan: "1.45.0", // https://github.com/conan-io/conan/releases
meson: "0.61.2", // https://github.com/mesonbuild/meson/releases
python: "3.8.10",
kcov: "v39",
task: "3.10.0",
doxygen: "1.9.1",
kcov: "v39", // https://github.com/SimonKagstrom/kcov/releases
task: "3.11.0", // https://github.com/go-task/task/releases
doxygen: "1.9.1", // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen
gcc: process.platform === "win32" ? "11.2.0.07112021" : "11",
}