diff options
| author | 2026-04-13 17:01:47 -0400 | |
|---|---|---|
| committer | 2026-04-13 17:01:47 -0400 | |
| commit | 77b54c35bf9587450cd636e0d7df37e190e28bfb (patch) | |
| tree | a290efdd8b09066847199f3f52a32be70d24ef51 /src/fruits/cmv/meson.build | |
| parent | 20617b9c80cf8d8051ecdb53a2c22f68c012f21b (diff) | |
| download | camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.tar.gz camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.tar.bz2 camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.zip | |
Smaller stuff that went uncommitted
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/fruits/cmv/meson.build')
| -rw-r--r-- | src/fruits/cmv/meson.build | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/fruits/cmv/meson.build b/src/fruits/cmv/meson.build index 3e78f05..ec27c81 100644 --- a/src/fruits/cmv/meson.build +++ b/src/fruits/cmv/meson.build @@ -14,8 +14,12 @@ if use_tui endif cmv_link_args = [] -if is_windows and not is_msvc - cmv_link_args += ['-static', '-static-libgcc', '-static-libstdc++', '-mwindows', '-municode'] +if is_windows + windows = import('windows') + cmv_src += [windows.compile_resources('icon.rc')] + if not is_msvc + cmv_link_args += ['-mwindows', '-municode', '-static', '-static-libgcc', '-static-libstdc++'] + endif endif executable('cmv', cmv_src, dependencies: cmv_deps, c_args: cmv_args, link_args: cmv_link_args, install: true) |