46 lines
846 B
Meson
46 lines
846 B
Meson
# 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++2a']
|
|
)
|
|
|
|
add_project_arguments (
|
|
'-Wpedantic',
|
|
'-Wshadow',
|
|
'-Wno-comment',
|
|
#'-Wno-gnu-zero-variadic-macro-arguments',
|
|
'-Wunused-but-set-variable',
|
|
language: 'cpp'
|
|
)
|
|
|
|
compiler = meson.get_compiler('cpp')
|
|
if compiler.get_id() == 'gcc'
|
|
message('Compiler: GCC')
|
|
elif compiler.get_id() == 'clang'
|
|
message('Compiler: LLVM/clang')
|
|
endif
|
|
|
|
args = []
|
|
deps = []
|
|
|
|
inc = []
|
|
inc += include_directories('.')
|
|
|
|
conf = configuration_data()
|
|
check_headers = [
|
|
['ncurses.h', 'HAVE_NCURSES_H'],
|
|
['curses.h', 'HAVE_CURSES_H'],
|
|
]
|
|
|
|
foreach h : check_headers
|
|
if compiler.has_header(h.get(0))
|
|
conf.set(h.get(1), 1)
|
|
endif
|
|
endforeach
|
|
|
|
subdir('src')
|
|
subdir('bin')
|
|
subdir('tests')
|