Windows: $(SDKREDISTDIR)\heimdal-version.mak

Create a heimdal-version.mak include file which can be included
in third party installer makefiles to determine which compiler and run
time library type was used to build the merge modules.  It is the
responsibility of third party installer packages to include the Visual
Studio CRT merge modules that are required for execution.

Change-Id: Icec2f47755ef7cc5f7dde2e0426603dece7e4933
This commit is contained in:
Jeffrey Altman
2013-09-26 17:21:33 -04:00
parent aafdf9fba1
commit f381c62405

View File

@@ -126,6 +126,14 @@ VCVER=VC80
! error Cant determine Visual C compiler version
!endif
$(SDKREDISTDIR)\heimdal-version.mak:
@echo HEIMDAL_VCVER=$(VCVER) > $@
!if "$(BUILD)"!="rel"
@echo HEIMDAL_CRT_DEBUG=yes >> $@
!endif
all:: $(SDKREDISTDIR)\heimdal-version.mak
!if "$(BUILD)"=="rel"
CRTNAME=CRT
!else