Partially update freeglut

This commit is contained in:
Wildan M 2026-05-09 06:22:16 +02:00
parent f66a2ab28a
commit e703945410

View File

@ -1,4 +1,4 @@
#TODO not compiled or tested
#TODO need x11/wayland
[source]
tar = "https://github.com/freeglut/freeglut/releases/download/v3.4.0/freeglut-3.4.0.tar.gz"
#blake3 = "08c8874d6ddad5be4860813865d4d4e2a84c294da0f3cf82a29e43920806b0da"
@ -7,34 +7,7 @@ dependencies = [
"mesa",
"mesa-glu",
]
template = "custom"
script = """
DYNAMIC_INIT
cat > redox.cmake <<EOF
# the name of the target operating system
set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_PROCESSOR "${TARGET%%-*}")
# which compilers to use for C and C++
set(CMAKE_C_COMPILER "${TARGET}-gcc")
set(CMAKE_CXX_COMPILER "${TARGET}-g++")
# where is the target environment located
set(CMAKE_FIND_ROOT_PATH "${COOKBOOK_SYSROOT}")
# adjust the default behavior of the FIND_XXX() commands:
# search programs in the host environment
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
# search headers, libraries, and packages in the target environment
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
EOF
COOKBOOK_CMAKE_FLAGS+=(
-DCMAKE_TOOLCHAIN_FILE=redox.cmake
-DFREEGLUT_GLES=0
)
cookbook_cmake
"""
template = "cmake"
cmakeflags = [
"-DFREEGLUT_GLES=0"
]