Don't need the brackets

This commit is contained in:
Scoopta 2020-02-28 22:04:49 -08:00
parent 94526d5272
commit fc1636c3ca

View File

@ -31,17 +31,16 @@ sources = ['src/config.c',
deps = [gtk, threads, wayland, dl]
if get_option('enable_run')
sources += ['modes/run.c']
sources += 'modes/run.c'
endif
if get_option('enable_drun')
gio = dependency('gio-unix-2.0')
sources += ['modes/drun.c']
deps += [gio]
sources += 'modes/drun.c'
deps += dependency('gio-unix-2.0')
endif
if get_option('enable_dmenu')
sources += ['modes/dmenu.c']
sources += 'modes/dmenu.c'
endif
install_man('man/wofi.1',