Adding back GLFW

This commit is contained in:
2024-10-04 09:37:32 -05:00
parent 4205b919d4
commit be27408cf4
32 changed files with 7512 additions and 16 deletions

15
lib/CMakeLists.txt Normal file
View File

@@ -0,0 +1,15 @@
# Copyright (c) 2024 Dominic Masters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
include(FetchContent)
add_library(font8x8 INTERFACE)
target_include_directories(font8x8 INTERFACE font8x8)
add_subdirectory(glad)
# GLFW
FetchContent_Declare(glfw URL https://github.com/glfw/glfw/releases/download/3.4/glfw-3.4.zip)
FetchContent_MakeAvailable(glfw)