redox/recipes/wip/graphics/other/ospray/recipe.toml
2024-07-02 06:08:02 +00:00

30 lines
764 B
TOML

#TODO maybe incomplete script, see https://github.com/ospray/OSPRay#building-and-finding-ospray
[source]
git = "https://github.com/ospray/OSPRay"
rev = "66fa8108485a8a92ff31ad2e06081bbaf391bc26"
[build]
template = "custom"
dependencies = [
"librkcommon",
"embree",
"ispc",
"onetbb",
"openvkl",
"open-image-denoise",
]
script = """
COOKBOOK_CONFIGURE="cmake"
COOKBOOK_CONFIGURE_FLAGS=(
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CROSSCOMPILING=True
-DCMAKE_EXE_LINKER_FLAGS="-static"
-DCMAKE_INSTALL_PREFIX="/"
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
-DCMAKE_SYSTEM_NAME=Generic
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
-DCMAKE_VERBOSE_MAKEFILE=On
"${COOKBOOK_SOURCE}"
)
cookbook_configure
"""