build-all, run-cmake - pass BOOST_ROOT as cmake prefix path

This commit is contained in:
Andrej730
2025-09-18 11:32:56 +05:00
parent b499686c7c
commit 4d0737c49b
2 changed files with 4 additions and 2 deletions
+3 -2
View File
@@ -1106,7 +1106,6 @@ cmake_args = [
"-DUSE_MMAP=OFF",
"-DBUILD_EXAMPLES=OFF",
"-DBUILD_SHARED_LIBS=" + OFF_ON[not BUILD_STATIC],
f"-DBOOST_ROOT={DEPS_DIR}/install/boost-{BOOST_VERSION}",
"-DGLTF_SUPPORT=ON",
f"-DJSON_INCLUDE_DIR={DEPS_DIR}/install/json",
f"-DEIGEN_DIR={DEPS_DIR}/install/eigen-3.3.9",
@@ -1115,7 +1114,9 @@ cmake_args = [
"-DVERSION_OVERRIDE=" + ("On" if ADD_COMMIT_SHA else "Off"),
]
"""Default CMake args to use for all CMake configs."""
cmake_args_prefix_path: list[str] = []
cmake_args_prefix_path: list[str] = [
f"{DEPS_DIR}/install/boost-{BOOST_VERSION}",
]
def get_cmake_args_prefix_path(additional_paths: Sequence[str] = ()) -> list[str]: