2024-08-24 06:20:37 +08:00
|
|
|
import { setupBrew } from "setup-brew"
|
2024-08-16 06:22:07 +08:00
|
|
|
import { setupBazel } from "./bazel/bazel.js"
|
|
|
|
import { setupCcache } from "./ccache/ccache.js"
|
|
|
|
import { setupChocolatey } from "./chocolatey/chocolatey.js"
|
|
|
|
import { setupCmake } from "./cmake/cmake.js"
|
|
|
|
import { setupConan } from "./conan/conan.js"
|
|
|
|
import { setupCppcheck } from "./cppcheck/cppcheck.js"
|
|
|
|
import { setupDoxygen } from "./doxygen/doxygen.js"
|
|
|
|
import { setupGcc } from "./gcc/gcc.js"
|
|
|
|
import { setupGcovr } from "./gcovr/gcovr.js"
|
|
|
|
import { setupGraphviz } from "./graphviz/graphviz.js"
|
|
|
|
import { setupKcov } from "./kcov/kcov.js"
|
|
|
|
import { setupClangFormat, setupClangTools, setupLLVM } from "./llvm/llvm.js"
|
|
|
|
import { setupMake } from "./make/make.js"
|
|
|
|
import { setupMeson } from "./meson/meson.js"
|
|
|
|
import { setupMSVC } from "./msvc/msvc.js"
|
|
|
|
import { setupNala } from "./nala/nala.js"
|
|
|
|
import { setupNinja } from "./ninja/ninja.js"
|
|
|
|
import { setupOpencppcoverage } from "./opencppcoverage/opencppcoverage.js"
|
|
|
|
import { setupPowershell } from "./powershell/powershell.js"
|
|
|
|
import { setupPython } from "./python/python.js"
|
|
|
|
import { setupSccache } from "./sccache/sccache.js"
|
|
|
|
import { setupSevenZip } from "./sevenzip/sevenzip.js"
|
|
|
|
import { setupTask } from "./task/task.js"
|
|
|
|
import { setupVcpkg } from "./vcpkg/vcpkg.js"
|
|
|
|
import { setupVCVarsall } from "./vcvarsall/vcvarsall.js"
|
2023-05-25 14:48:26 +08:00
|
|
|
|
2023-08-22 11:11:21 +08:00
|
|
|
/** The setup functions */
|
2023-05-25 14:48:26 +08:00
|
|
|
export const setups = {
|
|
|
|
nala: setupNala,
|
|
|
|
cmake: setupCmake,
|
|
|
|
ninja: setupNinja,
|
|
|
|
python: setupPython,
|
|
|
|
vcpkg: setupVcpkg,
|
|
|
|
bazel: setupBazel,
|
|
|
|
conan: setupConan,
|
|
|
|
meson: setupMeson,
|
|
|
|
gcovr: setupGcovr,
|
|
|
|
opencppcoverage: setupOpencppcoverage,
|
|
|
|
llvm: setupLLVM,
|
|
|
|
gcc: setupGcc,
|
|
|
|
choco: setupChocolatey,
|
|
|
|
brew: setupBrew,
|
|
|
|
powershell: setupPowershell,
|
|
|
|
ccache: setupCcache,
|
|
|
|
sccache: setupSccache,
|
|
|
|
doxygen: setupDoxygen,
|
|
|
|
graphviz: setupGraphviz,
|
|
|
|
cppcheck: setupCppcheck,
|
|
|
|
clangtidy: setupClangTools,
|
2023-09-11 14:58:16 +08:00
|
|
|
clangformat: setupClangFormat,
|
2023-05-25 14:48:26 +08:00
|
|
|
msvc: setupMSVC,
|
|
|
|
vcvarsall: setupVCVarsall,
|
|
|
|
kcov: setupKcov,
|
|
|
|
make: setupMake,
|
|
|
|
task: setupTask,
|
|
|
|
sevenzip: setupSevenZip,
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ToolName = keyof typeof setups
|
|
|
|
|
2023-08-22 11:11:21 +08:00
|
|
|
/** The tools that can be installed */
|
2023-05-25 14:48:26 +08:00
|
|
|
export const tools = Object.keys(setups) as Array<ToolName>
|
|
|
|
|
2023-08-22 12:41:17 +08:00
|
|
|
/** The possible inputs to the program */
|
|
|
|
export type Inputs = keyof typeof setups | "compiler" | "architecture" | "timeout"
|
2023-08-22 11:21:34 +08:00
|
|
|
|
2024-08-24 06:20:37 +08:00
|
|
|
/** An array of possible inputs */
|
2023-08-22 12:41:17 +08:00
|
|
|
export const inputs: Array<Inputs> = ["compiler", "architecture", "timeout", ...tools]
|