28 lines
498 B
CMake
28 lines
498 B
CMake
# Copyright (c) 2021 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# GLFW
|
|
if(DAWN_TARGET_GLFW)
|
|
add_subdirectory(glad)
|
|
add_subdirectory(glfw)
|
|
endif()
|
|
|
|
# SDL
|
|
if(DAWN_TARGET_SDL2)
|
|
add_subdirectory(glad)
|
|
add_subdirectory(SDL)
|
|
endif()
|
|
|
|
# GLM
|
|
add_subdirectory(glm)
|
|
|
|
# STB
|
|
add_library(stb INTERFACE)
|
|
target_include_directories(stb INTERFACE stb)
|
|
|
|
# OpenAL
|
|
set(LIBTYPE "STATIC")
|
|
add_subdirectory(openal-soft)
|
|
add_subdirectory(AudioFile) |