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.
13 lines
326 B
13 lines
326 B
3 years ago
|
project('begin', 'cpp',
|
||
|
version : '0.1',
|
||
|
default_options : ['warning_level=3', 'cpp_std=c++14'])
|
||
|
|
||
|
boost_dep = dependency('boost', modules : ['iostreams'])
|
||
|
|
||
|
executable('begin',
|
||
|
'src/main.cpp',
|
||
|
'src/begin.cpp',
|
||
|
'src/begin.hpp',
|
||
|
dependencies: boost_dep,
|
||
|
install : true)
|