Don't rebuild fiv-io.c several times
This commit is contained in:
parent
4f57070e27
commit
c2e8b65d0f
14
meson.build
14
meson.build
|
@ -161,11 +161,14 @@ tiff_tables = custom_target('tiff-tables.h',
|
|||
)
|
||||
|
||||
desktops = ['fiv.desktop', 'fiv-browse.desktop']
|
||||
exe = executable('fiv', 'fiv.c', 'fiv-view.c', 'fiv-io.c', 'fiv-context-menu.c',
|
||||
iolib = static_library('fiv-io', 'fiv-io.c', 'xdg.c', tiff_tables,
|
||||
dependencies : dependencies).extract_all_objects(recursive : true)
|
||||
exe = executable('fiv', 'fiv.c', 'fiv-view.c', 'fiv-context-menu.c',
|
||||
'fiv-browser.c', 'fiv-sidebar.c', 'fiv-thumbnail.c', 'fiv-collection.c',
|
||||
'fiv-io-model.c', 'xdg.c', tiff_tables, gresources, rc, config,
|
||||
install : true,
|
||||
'fiv-io-model.c', gresources, rc, config,
|
||||
objects : iolib,
|
||||
dependencies : dependencies,
|
||||
install : true,
|
||||
win_subsystem : 'windows',
|
||||
)
|
||||
|
||||
|
@ -193,8 +196,9 @@ if get_option('tools').enabled()
|
|||
endforeach
|
||||
|
||||
if gdkpixbuf.found()
|
||||
executable('benchmark-io', 'tools/benchmark-io.c', 'fiv-io.c', 'xdg.c',
|
||||
tiff_tables, dependencies : [dependencies, gdkpixbuf])
|
||||
executable('benchmark-io', 'tools/benchmark-io.c',
|
||||
objects : iolib,
|
||||
dependencies : [dependencies, gdkpixbuf])
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue