pywiq/meson.build

38 lines
792 B
Meson
Raw Normal View History

2023-10-07 12:11:43 +00:00
project('pywiq',
'cpp',
version: '0.0.0',
default_options: [
'prefix=/usr',
'warning_level=3',
'cpp_std=c++17',
])
pwq_lib = static_library('pywiq',
sources: [
],
dependencies: [
])
pwq_dep = declare_dependency(
link_with: pwq_lib,
include_directories: ['src']
)
executable('pwq',
sources: [
'src/main.cpp',
],
dependencies: [
pwq_dep
],
install: true)
executable('pwq-tests',
sources: [
'tests/main.cpp',
],
dependencies: [
pwq_dep,
dependency('catch2')
])