dreamcast-opengl/src/gl/meson.build
Fries c651dcd038 Create a basic flappy bird clone.
Right now, theres no score but I did make a entity abstraction which is like a GameObject from Unity where you have a position and scale (but no rotation) and the entity has a draw function and an update function.
2024-03-16 22:18:15 -07:00

9 lines
220 B
Meson

glcc_sources = [
'Gl.cc',
'GlEntity.cc'
]
glcc = static_library('glcc', glcc_sources, dependencies: deps, include_directories: incdirs)
glcc_dep = declare_dependency(link_with: [glcc], include_directories: incdirs)