chore: use make for Linux binary dependency setup

This commit is contained in:
luochen570
2026-05-29 22:41:13 +08:00
parent 70a3e39397
commit be4446c990

View File

@@ -20,7 +20,7 @@ fi
if [[ ! -x "$ENV_DIR/bin/cmake" || ! -x "$ENV_DIR/bin/ninja" || ! -x "$ENV_DIR/bin/clang++" ]]; then if [[ ! -x "$ENV_DIR/bin/cmake" || ! -x "$ENV_DIR/bin/ninja" || ! -x "$ENV_DIR/bin/clang++" ]]; then
echo "[setup] 在项目目录内创建 Linux 二进制构建环境..." echo "[setup] 在项目目录内创建 Linux 二进制构建环境..."
"$MICROMAMBA_BIN" create -y -p "$ENV_DIR" -c conda-forge \ "$MICROMAMBA_BIN" create -y -p "$ENV_DIR" -c conda-forge \
cmake ninja clangxx qt-main opencv pkg-config cmake make clangxx qt-main opencv pkg-config
fi fi
# README 中约定的路径,使用软链接指向隔离环境,便于 CMake 查找。 # README 中约定的路径,使用软链接指向隔离环境,便于 CMake 查找。