Files
eden/externals/glad/CMakeLists.txt
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
390 B
CMake
Raw Normal View History

2022-05-15 02:06:02 +02:00
# SPDX-FileCopyrightText: 2015 Yuri Kunde Schlesner <yuriks@yuriks.net>
# SPDX-License-Identifier: GPL-2.0-or-later
2023-03-01 21:31:27 +01:00
add_library(glad
src/glad.c
include/KHR/khrplatform.h
include/glad/glad.h
)
create_target_directory_groups(glad)
target_include_directories(glad PUBLIC "include/")
if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
target_link_libraries(glad PRIVATE dl)
endif()