Skip to content

Commit

Permalink
meson: Do not list Windows source files twice
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Nov 2, 2023
1 parent fb202dc commit 34ba3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ libgeany = shared_library('geany',
gen_src,
win_src,
osx_src,
host_machine.system() == 'windows' ? ['src/win32.c', 'src/win32.h'] : [ 'src/vte.c', 'src/vte.h' ],
host_machine.system() == 'windows' ? [] : [ 'src/vte.c', 'src/vte.h' ],
soversion: '0',
c_args: geany_cflags + [ '-DG_LOG_DOMAIN="Geany"' ],
include_directories: [iscintilla],
Expand Down

0 comments on commit 34ba3dd

Please sign in to comment.