Working on fixing stb

This commit is contained in:
2021-09-30 11:44:58 -07:00
parent fd6b9e5c84
commit 7ce46d3e44
7 changed files with 18 additions and 24 deletions

View File

@ -3,15 +3,15 @@
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
add_subdirectory(Unity)
#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/)
file(GLOB_RECURSE STB_SOURCES stb/*.h)
add_library(stb INTERFACE)
target_include_directories(stb INTERFACE stb)
# GLAD
add_subdirectory(glad2/cmake)