You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
begin/meson.build

13 lines
337 B

project('begin', 'cpp',
version : '1.0.0',
default_options : ['warning_level=3', 'cpp_std=c++14'])
boost_dep = dependency('boost', modules : ['iostreams', 'regex'])
executable('begin',
'src/main.cpp',
'src/begin.cpp',
'src/begin.hpp',
dependencies: boost_dep,
install : true)