spiegel-keyman/developer/kmcompx/include/meson.build
Marc Durdin 6c12bbc6cd refactor(developer): fixup path to tests
tidied up +removed unnecessary files
checked contents of files+included a few new functions needed for myVersion
changed datatypes in CheckForDuplicates
tidy up more paths
CheckFileConsistency: not able to fully adapt for use of char16_t on non windows p.
	-> used char16_t + commented out some AddWarning().
2022-07-20 17:49:17 +02:00

26 lines
571 B
Meson

#
# Keyman is copyright (C) SIL International. MIT License.
#
# Cross platform build script to build headers
#
project_ver = meson.project_version().split('.')
cfg = configuration_data()
cfg.set('majorver', project_ver[0])
cfg.set('minorver', project_ver[1])
cfg.set('patchver', project_ver[2])
configure_file(
configuration: cfg,
input: 'keyman_version.h.in',
output: 'keyman_version.h',
)
inc = include_directories( # '.', is_system: true)
'.',
'../../../windows/src/developer/kmcmpdll',
'../../src/ext/json',
'../../src/ext/json-schema-validator'
)