amber and luci learning vulkan contains notes and decently commented code (hopefully)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

5 lines
285 B

project('vulkan learning', 'c')
deps = [dependency('glfw3'), dependency('vulkan'), dependency('dl'), dependency('threads'), dependency('X11'), dependency('xxf86vm'), dependency('xrandr'), dependency('xi'), dependency('cglm')]
executable('triangle', 'src/main.c', dependencies: deps)