10 lines
234 B
Meson
10 lines
234 B
Meson
project('orotool', 'cpp',
|
|
version: '0.1.0',
|
|
meson_version: '>=0.49.2',
|
|
default_options: ['buildtype=debug', 'cpp_std=gnu++17'],
|
|
license: 'GPL3+',
|
|
)
|
|
|
|
date_incdir = include_directories('subprojects/date/include')
|
|
|
|
subdir('src')
|