micetools/src/micetools/micepatch/meson.build

17 lines
362 B
Meson
Raw Normal View History

2022-06-13 06:42:13 +00:00
rc = import('windows').compile_resources('micepatch.rc', depend_files: micepatch_ico)
micepatch = executable(
2022-06-13 03:22:52 +00:00
'micepatch',
2022-07-02 15:07:54 +00:00
win_subsystem: subsystem,
2022-06-13 03:22:52 +00:00
sources: [
'main.c',
2022-06-13 06:42:13 +00:00
rc,
2022-06-13 03:22:52 +00:00
],
link_with: [
mice_lib,
],
link_args: [
'/MANIFEST:EMBED',
'/MANIFESTUAC:level="asInvoker" uiAccess="false"',
]
)