15 lines
401 B
Meson
15 lines
401 B
Meson
project('prt-get', 'cpp',
|
|
version : '5.19.7',
|
|
default_options : ['warning_level=3', 'cpp_std=c++14'])
|
|
|
|
myconf = configuration_data()
|
|
myconf.set_quoted('VERSION', meson.project_version())
|
|
myconf.set_quoted('SYSCONFDIR','/etc')
|
|
myconf.set_quoted('LOCALSTATEDIR','/var')
|
|
configure_file(output : 'config.h',
|
|
configuration : myconf)
|
|
myconf_dir = include_directories('.')
|
|
|
|
subdir('src')
|
|
subdir('doc')
|