inching slowly towards a renderer
This commit is contained in:
parent
4b695ecaf6
commit
c7c7d5af77
28 changed files with 613 additions and 59 deletions
src/deps
|
@ -1,5 +1,12 @@
|
|||
|
||||
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "Build the GLFW example programs" FORCE)
|
||||
set(GLFW_BUILD_TESTS OFF CACHE BOOL "Build the GLFW test programs" FORCE)
|
||||
set(GLFW_BUILD_DOCS OFF CACHE BOOL "Build the GLFW documentation" FORCE)
|
||||
set(GLFW_INSTALL OFF CACHE BOOL "Generate installation target" FORCE)
|
||||
|
||||
add_subdirectory(glfw-3.2.1)
|
||||
add_subdirectory(lua-5.3.5)
|
||||
add_subdirectory(glad)
|
||||
|
||||
#add_subdirectory(arrrgh)
|
||||
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
cmake_minimum_required(VERSION 3.8)
|
||||
|
||||
project(glad)
|
||||
|
||||
add_subdirectory(src)
|
||||
add_library(glad STATIC src/glad.c)
|
||||
|
||||
target_include_directories(
|
||||
glad
|
||||
PUBLIC
|
||||
include
|
||||
)
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../include)
|
||||
add_library(glad STATIC glad.c)
|
Loading…
Add table
Add a link
Reference in a new issue