20 lines
327 B
CMake
20 lines
327 B
CMake
# Copyright (c) 2021 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# GLAD
|
|
add_subdirectory(glad)
|
|
|
|
# GLFW
|
|
add_subdirectory(glfw)
|
|
|
|
# GLM
|
|
add_subdirectory(glm)
|
|
|
|
# SDL
|
|
add_subdirectory(SDL)
|
|
|
|
# STB
|
|
add_library(stb INTERFACE)
|
|
target_include_directories(stb INTERFACE stb) |