Skip to content

Commit c4dc5cd

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

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
@@ -2776,6 +2776,13 @@ ifdef MSVC
27762776
$(INSTALL) git-remote-testsvn.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
27772777
$(INSTALL) git-sh-i18n--envsubst.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
27782778
$(INSTALL) git-show-index.pdb '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
2779+
ifndef DEBUG
2780+
$(INSTALL) $(vcpkg_rel_bin)/*.dll '$(DESTDIR_SQ)$(bindir_SQ)'
2781+
$(INSTALL) $(vcpkg_rel_bin)/*.pdb '$(DESTDIR_SQ)$(bindir_SQ)'
2782+
else
2783+
$(INSTALL) $(vcpkg_dbg_bin)/*.dll '$(DESTDIR_SQ)$(bindir_SQ)'
2784+
$(INSTALL) $(vcpkg_dbg_bin)/*.pdb '$(DESTDIR_SQ)$(bindir_SQ)'
2785+
endif
27792786
endif
27802787
$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
27812788
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(mergetools_instdir_SQ)'

0 commit comments

Comments
 (0)