mirror of
https://github.com/glfw/glfw.git
synced 2025-10-04 13:46:37 +00:00
21 lines
698 B
Meson
21 lines
698 B
Meson
include_deps_dir = include_directories('.')
|
|
|
|
glad_dep = declare_dependency(
|
|
link_with: static_library('glad',
|
|
'glad.c',
|
|
'glad/glad.h'),
|
|
include_directories: include_deps_dir)
|
|
|
|
getopt_dep = declare_dependency(
|
|
link_with: static_library('getopt',
|
|
'getopt.c',
|
|
'getopt.h'),
|
|
include_directories: include_deps_dir)
|
|
|
|
tinycthread_dep = declare_dependency(
|
|
link_with: static_library('tinycthread',
|
|
'tinycthread.c',
|
|
'tinycthread.h'),
|
|
include_directories: include_deps_dir,
|
|
dependencies: threads_dep)
|