added Linux arm64 SDK

This commit is contained in:
Andrew Zambazos
2026-06-11 14:07:38 +12:00
parent c0395a49bd
commit cbf3f085d0
2160 changed files with 1 additions and 542 deletions
@@ -1,27 +0,0 @@
# Disable various GLFW options
option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" OFF)
option(GLFW_BUILD_TESTS "Build the GLFW test programs" OFF)
option(GLFW_BUILD_DOCS "Build the GLFW documentation" OFF)
option(GLFW_INSTALL "Generate installation target" OFF)
set(GLFW_DIR "glfw")
add_subdirectory(${GLFW_DIR})
include_directories("${GLFW_DIR}/include")
include_directories("${GLFW_DIR}/deps")
link_libraries(glfw)
set(GLAD_SOURCES "${GLFW_DIR}/deps/glad/glad.h"
"${GLFW_DIR}/deps/glad.c")
set(SOURCES "src/Sample.h"
"src/Sample.cpp"
"src/WebTile.h"
"src/WebTile.cpp"
"src/Window.h"
"src/Window.cpp"
"src/GLTextureSurface.h"
"src/GLTextureSurface.cpp"
"src/main.cpp")
add_app(Sample7 ${SOURCES} ${GLAD_SOURCES})