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.
|
project('begin', 'cpp',
|
|
version : '0.1',
|
|
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)
|