spiegel-keyman/common/engine/keyboardprocessor/tests/unit/json/meson.build
Tim Eves 5f45ea450e Minor fixups for build scripts
Also prevent compiler complaining about inconistent dllimport/dllexport 
linkage by ensuring KM_KBP_EXPORTING is defined on Windows too.
2018-10-29 16:02:19 +07:00

12 lines
470 B
Meson

# Copyright: © 2018 SIL International.
# Description: Cross platform build script to compile json unit tests.
# Create Date: 2 Oct 2018
# Authors: Tim Eves (TSE)
#
e = executable('jsontest', 'jsontest.cpp',
include_directories: [libsrc],
objects: lib.extract_objects('json.cpp'))
test('jsontest', e, args: 'jsontest.json')
test('jsontestOutput', python, is_parallel: false, args:
cmpfiles + ['jsontest.json', join_paths(stnds, 'jsontest.json')])