From 19c665ca01307235f0d9ad9ba98a744b949b83fe Mon Sep 17 00:00:00 2001 From: Marco Matthies <71844+marcom@users.noreply.github.com> Date: Mon, 21 Oct 2024 08:54:24 +0200 Subject: [PATCH] Add pixi deps and configure task --- c++/pixi.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/c++/pixi.toml b/c++/pixi.toml index 9f8c756..baf4c9c 100644 --- a/c++/pixi.toml +++ b/c++/pixi.toml @@ -10,3 +10,20 @@ version = "0.1.0" [tasks] [dependencies] + +[feature.build.dependencies] +cxx-compiler = "1.8.0.*" +cmake = "3.30.5.*" +make = ">=4.4,<5" + +[feature.build.tasks.configure] +cmd = [ + "cmake", + "-S", ".", + "-B", "build", +] +inputs = ["CMakeLists.txt"] +outputs = ["build/CMakeFiles/"] + +[environments] +build = ["build"] -- GitLab