mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-20 03:36:37 +02:00
initial import, >900commits predate this
This commit is contained in:
22
external/glad-debug/CMakeLists.txt
vendored
Normal file
22
external/glad-debug/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(glad C)
|
||||
|
||||
set(C_FILES
|
||||
"src/glad.c"
|
||||
)
|
||||
|
||||
set(H_FILES
|
||||
"include/glad/glad.h"
|
||||
"include/KHR/khrplatform.h"
|
||||
)
|
||||
|
||||
add_library(glad ${C_FILES} ${H_FILES})
|
||||
|
||||
target_include_directories(glad PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
||||
|
||||
if(UNIX)
|
||||
target_link_libraries(glad
|
||||
dl
|
||||
)
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user