mirror of
https://github.com/MorizzG/ray-tracer.git
synced 2025-12-06 04:22:42 +00:00
init commit
This commit is contained in:
commit
a3e1542250
10 changed files with 360382 additions and 0 deletions
20
meson.build
Normal file
20
meson.build
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
project('ray-tracer', 'cpp', default_options : [
|
||||
'warning_level=3',
|
||||
'werror=true',
|
||||
'cpp_std=c++23',
|
||||
'b_lto=true',
|
||||
'b_lto_mode=thin',
|
||||
])
|
||||
|
||||
add_project_arguments(
|
||||
'-Wconversion',
|
||||
|
||||
language : 'cpp'
|
||||
)
|
||||
|
||||
sources = []
|
||||
subdir('src')
|
||||
|
||||
inc = include_directories('src')
|
||||
|
||||
executable('ray-tracer', sources, include_directories : inc)
|
||||
Loading…
Add table
Add a link
Reference in a new issue