Skip to content

Commit 44d7fd9

Browse files
jeffhostetlerdscho
authored andcommitted
Makefile: add third-party DLLs to install target
Signed-off-by: Jeff Hostetler <[email protected]>
1 parent 33969fe commit 44d7fd9

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
@@ -2580,6 +2580,13 @@ ifdef MSVC
25802580
$(INSTALL) git-remote-testsvn.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
25812581
$(INSTALL) git-sh-i18n--envsubst.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
25822582
$(INSTALL) git-show-index.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
2583+
ifndef DEBUG
2584+
$(INSTALL) $(vcpkg_rel_bin)/*.dll '$(DESTDIR_SQ)$(bindir_SQ)'
2585+
$(INSTALL) $(vcpkg_rel_bin)/*.pdb '$(DESTDIR_SQ)$(bindir_SQ)'
2586+
else
2587+
$(INSTALL) $(vcpkg_dbg_bin)/*.dll '$(DESTDIR_SQ)$(bindir_SQ)'
2588+
$(INSTALL) $(vcpkg_dbg_bin)/*.pdb '$(DESTDIR_SQ)$(bindir_SQ)'
2589+
endif
25832590
endif
25842591
$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
25852592
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(mergetools_instdir_SQ)'

0 commit comments

Comments
 (0)