Initial commit

This commit is contained in:
Dimitri Lozeve 2021-02-23 19:14:00 +01:00
commit a3a19af3ec
8 changed files with 618 additions and 0 deletions

20
meson.build Normal file
View file

@ -0,0 +1,20 @@
project(
'shadertool', 'c',
version: '0.1',
default_options: [
'buildtype=debugoptimized',
'warning_level=3',
'c_std=c99',
'werror=true',
]
)
glfw_dep = dependency('glfw3')
glew_dep = dependency('glew')
executable(
'shadertool',
sources: ['main.c', 'log.c'],
dependencies: [glfw_dep, glew_dep],
c_args: '-DLOG_USE_COLOR',
)