mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
We've got a couple of credential helpers in "contrib/credential", all of which aren't yet wired up via Meson. Do so. Note that ideally, we'd also wire up t0303 to be executed with each of the credential helpers to verify their functionality. Unfortunately though, none of them pass the test suite right now, so this is left for a future change. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
6 lines
149 B
Meson
6 lines
149 B
Meson
executable('git-credential-wincred',
|
|
sources: 'git-credential-wincred.c',
|
|
install: true,
|
|
install_dir: get_option('libexecdir') / 'git-core',
|
|
)
|