2022-11-12 06:12:15 +08:00
|
|
|
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
|
2024-04-16 02:18:29 +08:00
|
|
|
@@ -564,8 +564,9 @@
|
|
|
|
"$(INSTALLTOP)\include\openssl"
|
2022-11-12 06:12:15 +08:00
|
|
|
@"$(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)"
|
2024-04-16 02:18:29 +08:00
|
|
|
@"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(CMAKECONFIGDIR)"
|
|
|
|
@"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_EXPORTERS_CMAKE) "$(CMAKECONFIGDIR)"
|
2022-11-12 06:12:15 +08:00
|
|
|
|
|
|
|
@@ -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)"=="" \
|