Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
master

- add an icon to the exe on windows

## 4.1.1 31/07/25

- do our own tile snapping if gtk has no snap mechanism
Expand Down
7 changes: 7 additions & 0 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ resources = gnome.compile_resources(
source_dir: 'gtk',
)

if target_machine.system() == 'windows'
windows = import('windows')
resources += windows.compile_resources('vipsdisp.rc',
args: ['-O', 'coff'],
depend_files: 'vipsdisp.ico')
endif

headers = files (
'displaybar.h',
'fuzzy.h',
Expand Down
Binary file added src/vipsdisp.ico
Binary file not shown.
1 change: 1 addition & 0 deletions src/vipsdisp.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.libvips.vipsdisp ICON "vipsdisp.ico"