Skip to content

Commit 14355b6

Browse files
jeffhostetlerdscho
authored andcommitted
Makefile: add third-party DLLs to install target
Signed-off-by: Jeff Hostetler <[email protected]>
1 parent 6b4ebd1 commit 14355b6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2588,6 +2588,13 @@ ifdef MSVC
25882588
$(INSTALL) git-remote-testsvn.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
25892589
$(INSTALL) git-sh-i18n--envsubst.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
25902590
$(INSTALL) git-show-index.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
2591+
ifndef DEBUG
2592+
$(INSTALL) $(vcpkg_rel_bin)/*.dll '$(DESTDIR_SQ)$(bindir_SQ)'
2593+
$(INSTALL) $(vcpkg_rel_bin)/*.pdb '$(DESTDIR_SQ)$(bindir_SQ)'
2594+
else
2595+
$(INSTALL) $(vcpkg_dbg_bin)/*.dll '$(DESTDIR_SQ)$(bindir_SQ)'
2596+
$(INSTALL) $(vcpkg_dbg_bin)/*.pdb '$(DESTDIR_SQ)$(bindir_SQ)'
2597+
endif
25912598
endif
25922599
$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
25932600
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(mergetools_instdir_SQ)'

0 commit comments

Comments
 (0)