This commit is contained in:
chatlanin
2022-06-04 12:59:06 +03:00
commit e44599f3dd
4 changed files with 27665 additions and 0 deletions

14
meson.build Normal file
View File

@@ -0,0 +1,14 @@
project('glad', 'c', version: '4.6')
headers = [ 'glad.h', 'khrplatform.h' ]
sources = [ 'glad.c' ]
lib = library(
'glad',
sources: [headers, sources],
cpp_args: '-ldl'
)
glad_dep = declare_dependency(
link_with: lib
)