Split into several files

This commit is contained in:
Dimitri Lozeve 2021-02-23 19:42:11 +01:00
parent a3a19af3ec
commit 2480fa80ef
7 changed files with 275 additions and 226 deletions

View file

@ -14,7 +14,7 @@ glew_dep = dependency('glew')
executable(
'shadertool',
sources: ['main.c', 'log.c'],
sources: ['main.c', 'renderer.c', 'shaders.c', 'log.c'],
dependencies: [glfw_dep, glew_dep],
c_args: '-DLOG_USE_COLOR',
)