spiegel-keyman/keyboardprocessor/meson.build
Tim Eves 9aa6e7a70d Add meson.build scripts
This is a temporary set of build scripts for the keyboard processor 
work, until a cross platform build system is settled on for the whole 
keyman project.
2018-10-02 11:48:57 +07:00

15 lines
375 B
Meson

project('keyboardprocessor', 'cpp', 'c',
version: '0.0.0',
license: 'MIT',
default_options : ['buildtype=release',
'cpp_std=c++14'])
compiler = meson.get_compiler('cpp')
py = import('python3')
python = py.find_python()
inc = include_directories('include', is_system: true)
subdir('include')
subdir('src')
subdir('tests')