mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-23 00:37:41 +00:00
71 lines
1.9 KiB
Meson
71 lines
1.9 KiB
Meson
# Copyright: © 2018 SIL International.
|
|
# Description: Cross platform build script to compile libkmnkbp API unit tests.
|
|
# Create Date: 19 Oct 2018
|
|
# Authors: Marc Durdin, Tim Eves (TSE)
|
|
# History: 19 Oct 2018 - TSE - Added test for context API functions.
|
|
#
|
|
|
|
kmx = executable('kmx', 'kmx.cpp',
|
|
cpp_args: defns,
|
|
include_directories: [inc, libsrc],
|
|
link_args: links,
|
|
objects: lib.extract_all_objects())
|
|
|
|
kmns = [
|
|
'000 - null keyboard',
|
|
'001 - basic input UnicodeI',
|
|
'002 - basic input Unicode',
|
|
'003 - nul',
|
|
'004 - basic input (shift 2)',
|
|
'005 - nul with initial context',
|
|
'006 - vkey input (shift ctrl)',
|
|
'007 - vkey input (ctrl alt)',
|
|
'008 - vkey input (ctrl alt 2)',
|
|
'012 - ralt',
|
|
'013 - deadkeys',
|
|
'014 - groups and virtual keys',
|
|
'015 - ralt 2',
|
|
'017 - space mnemonic kbd',
|
|
'018 - nul testing',
|
|
'019 - multiple deadkeys',
|
|
'020 - deadkeys and backspace',
|
|
|
|
'021 - options',
|
|
'022 - options with preset',
|
|
'023 - options with save',
|
|
'024 - options with save and preset',
|
|
'025 - options with reset',
|
|
|
|
'026 - system stores',
|
|
'027 - system stores 2',
|
|
|
|
'028 - smp',
|
|
'029 - beep',
|
|
|
|
'030 - multiple groups',
|
|
'031 - caps lock'
|
|
# '032 - caps control', # TODO: support capsononly, capsalwaysoff, shiftfreescaps
|
|
# '033 - caps alwyas off' # TODO: support capsononly, capsalwaysoff, shiftfreescaps
|
|
]
|
|
|
|
prog_kmcomp = find_program('kmcomp')
|
|
|
|
# todo: if kmcomp is not found, use the .kmx in the source folder
|
|
# therefore make kmcomp compile to the source folder and add to repo?
|
|
|
|
foreach kmn : kmns
|
|
kmn_test = custom_target(
|
|
kmn + '.kmn',
|
|
output: kmn + '.kmx',
|
|
input: 'kmn/' + kmn + '.kmn',
|
|
command : [prog_kmcomp, '-s', '@INPUT@', '@OUTPUT@']
|
|
)
|
|
|
|
kmn_source = configure_file(
|
|
input: 'kmn/' + kmn + '.kmn',
|
|
output: kmn + '.kmn',
|
|
copy: true
|
|
)
|
|
|
|
test(kmn, kmx, depends: [kmn_test], args: [kmn])
|
|
endforeach
|