Skip to content

Commit

Permalink
Merge pull request #12827 from keymanapp/chore/core/meson_warnings
Browse files Browse the repository at this point in the history
chore(core): remove meson warnings for wasm builds
  • Loading branch information
ermshiperete authored Dec 13, 2024
2 parents 87ab5f4 + e069c3a commit 58cfc35
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 37 deletions.
6 changes: 1 addition & 5 deletions core/tests/unit/kmx/fixtures/binary/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ binary_tests = [
]

foreach kbd : binary_tests
configure_file(
input: kbd + '.kmn',
output: kbd + '.kmn',
copy: true
)
fs.copyfile(kbd + '.kmn', kbd + '.kmn')

configure_file(
command: hextobin_cmd + ['@INPUT@', '@OUTPUT@'],
Expand Down
5 changes: 4 additions & 1 deletion core/tests/unit/kmx/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ foreach kbd : tests
cfg.set('CONTENT', content)

kbd_kmn = configure_file(
copy: true,
# not really a file that needs to be configured, but the `copy` parameter
# is deprecated and `fs.copyfile` doesn't work with files that are not in
# the source directory
configuration: cfg,
input: kbd_src_path,
output: kbd + '.kmn'
)
Expand Down
6 changes: 1 addition & 5 deletions core/tests/unit/ldml/invalid-keyboards/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ invalid_tests = [
# Build all keyboards in output folder

foreach kbd : invalid_tests
configure_file(
input: kbd + '.xml',
output: kbd + '.xml',
copy: true
)
fs.copyfile(kbd + '.xml', kbd + '.xml')

configure_file(
command: hextobin_cmd + ['@INPUT@', '@OUTPUT@'],
Expand Down
13 changes: 2 additions & 11 deletions core/tests/unit/ldml/keyboards/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ kmc_cmd = [node, '--enable-source-maps', kmc_root]
# Build all keyboards in output folder

foreach kbd : tests_needing_copy
configure_file(
copy: true,
input: kbd + '.xml',
output: kbd + '.xml'
)
fs.copyfile(kbd + '.xml', kbd + '.xml')

configure_file(
command: kmc_cmd + ['build', '@INPUT@', '--out-file', '@OUTPUT@'],
Expand All @@ -86,13 +82,8 @@ foreach kbd : tests_with_testdata
)
endforeach


foreach kbd : tests_from_cldr
configure_file(
copy: true,
input: ldml_data / kbd + '.xml',
output: kbd + '.xml'
)
fs.copyfile(ldml_data / kbd + '.xml', kbd + '.xml')
configure_file(
command: kmc_cmd + ['build', '@INPUT@', '--out-file', '@OUTPUT@'],
input: join_paths(ldml_data, kbd + '.xml'),
Expand Down
12 changes: 2 additions & 10 deletions core/tests/unit/ldml/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,8 @@ else
endif

# copy package.json into build dir for test use
configure_file(
copy: true,
input: '../../../../package.json',
output: 'package.json',
)
configure_file(
copy: true,
input: '../../../../resources/standards-data/unicode-character-database/Blocks.txt',
output: 'Blocks.txt',
)
fs.copyfile('../../../../package.json', 'package.json')
fs.copyfile('../../../../resources/standards-data/unicode-character-database/Blocks.txt', 'Blocks.txt')

configure_file(
command: [node, meson.current_source_dir() / 'write_node_versions.js','@OUTPUT@'],
Expand Down
1 change: 1 addition & 0 deletions core/wasm.build.linux.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
c = ['$EMSCRIPTEN_BASE/emcc']
cpp = ['$EMSCRIPTEN_BASE/em++']
ar = ['$EMSCRIPTEN_BASE/emar']
strip = ['$EMSCRIPTEN_BASE/emstrip']
1 change: 1 addition & 0 deletions core/wasm.build.mac.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
c = ['$EMSCRIPTEN_BASE/emcc']
cpp = ['$EMSCRIPTEN_BASE/em++']
ar = ['$EMSCRIPTEN_BASE/emar']
strip = ['$EMSCRIPTEN_BASE/emstrip']
1 change: 1 addition & 0 deletions core/wasm.build.win.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
c = ['python.exe', '$EMSCRIPTEN_BASE/emcc.py']
cpp = ['python.exe', '$EMSCRIPTEN_BASE/em++.py']
ar = ['python.exe', '$EMSCRIPTEN_BASE/emar.py']
strip = ['python.exe', '$EMSCRIPTEN_BASE/emstrip.py']

[properties]
1 change: 1 addition & 0 deletions core/wasm.defs.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
c = ['emcc']
cpp = ['em++']
ar = ['emar']
strip = ['emstrip']
exe_wrapper = 'node'

[properties]
Expand Down
4 changes: 2 additions & 2 deletions developer/src/kmcmplib/tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ gtestcompilertest = executable('gtest-compiler-tests', 'gtest-compiler.tests.cpp
include_directories: inc,
name_suffix: name_suffix,
link_args: links + tests_links,
objects: lib.extract_all_objects(),
objects: lib.extract_all_objects(recursive: false),
dependencies: [ icuuc_dep, gtest_dep, gmock_dep ],
)

Expand All @@ -173,7 +173,7 @@ gtest_km_u16_test = executable('gtest-km_u16-tests', 'gtest-km_u16.tests.cpp',
include_directories: inc,
name_suffix: name_suffix,
link_args: links + tests_links,
objects: lib.extract_all_objects(),
objects: lib.extract_all_objects(recursive: false),
dependencies: [ icuuc_dep, gtest_dep, gmock_dep ],
)

Expand Down
1 change: 1 addition & 0 deletions developer/src/kmcmplib/wasm.build.linux.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
c = ['$EMSCRIPTEN_BASE/emcc']
cpp = ['$EMSCRIPTEN_BASE/em++']
ar = ['$EMSCRIPTEN_BASE/emar']
strip = ['$EMSCRIPTEN_BASE/emstrip']
1 change: 1 addition & 0 deletions developer/src/kmcmplib/wasm.build.mac.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
c = ['$EMSCRIPTEN_BASE/emcc']
cpp = ['$EMSCRIPTEN_BASE/em++']
ar = ['$EMSCRIPTEN_BASE/emar']
strip = ['$EMSCRIPTEN_BASE/emstrip']
1 change: 1 addition & 0 deletions developer/src/kmcmplib/wasm.build.win.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
c = ['python.exe', '$EMSCRIPTEN_BASE/emcc.py']
cpp = ['python.exe', '$EMSCRIPTEN_BASE/em++.py']
ar = ['python.exe', '$EMSCRIPTEN_BASE/emar.py']
strip = ['python.exe', '$EMSCRIPTEN_BASE/emstrip.py']
7 changes: 4 additions & 3 deletions developer/src/kmcmplib/wasm.defs.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[binaries]
c = ['emcc.py']
cpp = ['em++.py']
ar = ['emar.py']
c = ['emcc']
cpp = ['em++']
ar = ['emar']
strip = ['emstrip']
exe_wrapper = 'node'

[properties]
Expand Down

0 comments on commit 58cfc35

Please sign in to comment.