19 lines
427 B
Meson
19 lines
427 B
Meson
project(
|
|
'iosifovich', ['cpp'],
|
|
version: '0.1.0',
|
|
meson_version: '>= 1.3.0',
|
|
default_options: [ 'warning_level=3', 'werror=true', 'cpp_std=c++17']
|
|
)
|
|
|
|
iosifovich_sources = []
|
|
iosifovich_include_dirs = []
|
|
|
|
subdir('src')
|
|
|
|
iosifovich_lib = library('iosifovich', iosifovich_sources, install: true)
|
|
iosifovich_dep = declare_dependency(
|
|
link_with : iosifovich_lib,
|
|
include_directories: iosifovich_include_dirs
|
|
)
|
|
|
|
subdir('tests') |