mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 10:29:06 +08:00
45 lines
1.9 KiB
Diff
45 lines
1.9 KiB
Diff
|
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
|
||
|
index 5946c89..f71f3bf 100644
|
||
|
--- a/Configurations/windows-makefile.tmpl
|
||
|
+++ b/Configurations/windows-makefile.tmpl
|
||
|
@@ -556,6 +556,7 @@ install_dev: install_runtime_libs
|
||
|
@"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(libdir)"
|
||
|
@"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_LIBS) "$(libdir)"
|
||
|
@if "$(SHLIBS)"=="" \
|
||
|
+ @if "$(INSTALL_PDBS)"=="ON" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" ossl_static.pdb "$(libdir)"
|
||
|
|
||
|
uninstall_dev:
|
||
|
@@ -569,6 +570,7 @@ install_engines: _install_modules_deps
|
||
|
@if not "$(INSTALL_ENGINES)"=="" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINES) "$(ENGINESDIR)"
|
||
|
@if not "$(INSTALL_ENGINES)"=="" \
|
||
|
+ @if "$(INSTALL_PDBS)"=="ON" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINEPDBS) "$(ENGINESDIR)"
|
||
|
|
||
|
uninstall_engines:
|
||
|
@@ -580,6 +582,7 @@ install_modules: _install_modules_deps
|
||
|
@if not "$(INSTALL_MODULES)"=="" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_MODULES) "$(MODULESDIR)"
|
||
|
@if not "$(INSTALL_MODULES)"=="" \
|
||
|
+ @if "$(INSTALL_PDBS)"=="ON" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_MODULEPDBS) "$(MODULESDIR)"
|
||
|
|
||
|
uninstall_modules:
|
||
|
@@ -593,6 +596,7 @@ install_runtime_libs: build_libs
|
||
|
@if not "$(SHLIBS)"=="" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBS) "$(INSTALLTOP)\bin"
|
||
|
@if not "$(SHLIBS)"=="" \
|
||
|
+ @if "$(INSTALL_PDBS)"=="ON" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBPDBS) \
|
||
|
"$(INSTALLTOP)\bin"
|
||
|
|
||
|
@@ -605,6 +609,7 @@ install_programs: install_runtime_libs build_programs
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMS) \
|
||
|
"$(INSTALLTOP)\bin"
|
||
|
@if not "$(INSTALL_PROGRAMS)"=="" \
|
||
|
+ @if "$(INSTALL_PDBS)"=="ON" \
|
||
|
"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMPDBS) \
|
||
|
"$(INSTALLTOP)\bin"
|
||
|
@if not "$(INSTALL_PROGRAMS)"=="" \
|