moved to root

This commit is contained in:
Andrew Zambazos
2026-06-11 14:09:53 +12:00
parent cbf3f085d0
commit a2784f684b
2151 changed files with 0 additions and 0 deletions
@@ -0,0 +1,27 @@
# 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})