init
This commit is contained in:
25
meson.build
Normal file
25
meson.build
Normal file
@@ -0,0 +1,25 @@
|
||||
# https://pixorblog.wordpress.com/2019/07/27/a-meson-starter-script-for-c-projects
|
||||
project(
|
||||
'hack',
|
||||
'cpp',
|
||||
version : '0.0.1',
|
||||
default_options : ['cpp_std=c++20']
|
||||
)
|
||||
|
||||
add_project_arguments (
|
||||
'-pedantic',
|
||||
'-Wno-comment',
|
||||
'-Wno-gnu-zero-variadic-macro-arguments',
|
||||
'-Wunused-but-set-variable',
|
||||
language: 'cpp'
|
||||
)
|
||||
|
||||
args = []
|
||||
deps = []
|
||||
|
||||
inc = []
|
||||
inc += include_directories('.')
|
||||
|
||||
subdir('src')
|
||||
subdir('bin')
|
||||
subdir('tests')
|
||||
Reference in New Issue
Block a user