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

28 lines
453 B
Meson

project('mornelune',
'cpp',
version: '0.0.0',
default_options: [
'prefix=/usr',
'warning_level=3',
'cpp_stdd=c++17'
])
conf = configuration_data()
conf.set('version', meson.project_version())
configure_file(
input: 'src/conf.in.hpp',
output: 'conf.hpp',
configuration: conf
)
executable(
'mornelune',
sources: [
'src/main.cpp',
],
dependencies: [
],
install: true
)