mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-05 15:17:40 +00:00
Add explanatory comments to disabling kmcomp
This commit is contained in:
parent
f7f1da8267
commit
d985e7b7b7
1 changed files with 5 additions and 0 deletions
|
|
@ -59,6 +59,11 @@ else
|
|||
wine = find_program('wine', required: false)
|
||||
kmcomp_cmd = [wine, kmcomp]
|
||||
if not wine.found()
|
||||
# We assign the unfound wine external program object to kmcomp
|
||||
# to cause the kmcomp object to fail too, as without wine we
|
||||
# cannot execute kmcomp.exe on non-Windows systems.
|
||||
# NOTE: a disabler() would be ideal here, but we need to support
|
||||
# pre 0.45 versions of meson.
|
||||
kmcomp = wine
|
||||
endif
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue