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

30 lines
768 B
TOML

#TODO maybe incomplete script, see https://github.com/ospray/ospray_studio#standard-cmake-build
[source]
git = "https://github.com/ospray/ospray_studio"
rev = "d2c83a67c841f1329f47cf9648a56b3dacbcdcaa"
[build]
template = "custom"
dependencies = [
"ospray",
"onetbb",
"librkcommon",
"mesa",
"glfw",
"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
"""