Working on doing things properly.

This commit is contained in:
2021-09-30 11:09:52 -07:00
parent d47a3707ba
commit fd6b9e5c84
27 changed files with 106439 additions and 890 deletions

18
lib/CMakeLists.txt Normal file
View File

@ -0,0 +1,18 @@
# Copyright (c) 2021 Dominic Msters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
add_subdirectory(Unity)
add_subdirectory(cglm)
add_subdirectory(glfw)
add_subdirectory(duktape)
# STB
add_library(stb STATIC stb/stb_image.h)
set_target_properties(stb PROPERTIES LINKER_LANGUAGE C)
target_include_directories(stb PUBLIC stb/)
# GLAD
add_subdirectory(glad2/cmake)
glad_add_library(glad_gl_core_33 SHARED API gl:core=3.3)