spiegel-keyman/common/engine/keyboardprocessor/meson.build
Tim Eves 93c76c14df Move headers into include/keyman from include/
Necessary to allow keyboardprocessor.h to refer to auxillary headers as 
<keyboard/header.h>
2018-11-06 16:19:14 +07:00

26 lines
656 B
Meson

# Copyright: © 2018 SIL International.
# Description: Cross platform build script to compile libkmnkbp, documentation
# and tests.
# Create Date: 2 Oct 2018
# Authors: Tim Eves (TSE)
#
project('keyboardprocessor', 'cpp', 'c',
version: '0.0.0',
license: 'MIT',
default_options : ['buildtype=release',
'cpp_std=c++14'])
compiler = meson.get_compiler('cpp')
if compiler.get_id() == 'msvc'
add_global_arguments('/source-charset:utf-8', language: ['c', 'cpp'])
endif
py = import('python3')
python = py.find_python()
subdir('doc')
subdir('include')
subdir('src')
subdir('tests')