Initial commit
This commit is contained in:
commit
a3a19af3ec
8 changed files with 618 additions and 0 deletions
20
meson.build
Normal file
20
meson.build
Normal 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',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue