mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-01 05:07:40 +00:00
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.
15 lines
375 B
Meson
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')
|