This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
snakefile/meson.build

43 lines
479 B
Meson

project(
'snakefile',
'cpp',
version: '0.0.0',
default_options: [
'prefix=/usr',
'warning_level=3',
'cpp_std=c++20'
]
)
lang = static_library(
'snakelang',
sources: [
]
)
executable(
'snake',
sources: [
'src/main.cpp',
],
dependencies: [
],
link_with: [
lang
],
install: true
)
executable(
'snaketests',
sources: [
'tests/main.cpp',
],
dependencies: [
dependency('catch2')
],
link_with: [
lang
]
)