orotool/meson.build
King_DuckZ 002f27de1f Not using boost in the end
Although the dependency is still there because
of restc-cpp
2020-06-20 00:11:06 +02:00

22 lines
524 B
Meson

project('orotool', 'cpp',
version: '0.1.0',
meson_version: '>=0.49.2',
default_options: ['buildtype=debug', 'cpp_std=gnu++17'],
license: 'GPL3+',
)
restc_cpp_dep = dependency('restc-cpp', version: '>=0.1.1',
fallback: ['restc-cpp', 'restc_cpp_dep'],
default_options: [
'restc_cpp_with_unit_tests=false',
],
)
date_incdir = include_directories('subprojects/date/include')
executable(meson.project_name(),
'main.cpp',
install: true,
dependencies: [restc_cpp_dep],
include_directories: date_incdir,
)