[mapguide-commits] r8795 - sandbox/jng/diet_vs2015/MgDev
svn_mapguide at osgeo.org
svn_mapguide at osgeo.org
Fri Oct 23 06:27:10 PDT 2015
Author: jng
Date: 2015-10-23 06:27:10 -0700 (Fri, 23 Oct 2015)
New Revision: 8795
Modified:
sandbox/jng/diet_vs2015/MgDev/setenvironment.bat
Log:
The existing server postbuild makefile assumes that debug configurations of MapGuide will be built against release FDO binaries (!?), so update MgDev/setenvironment.bat to match this expectation
Modified: sandbox/jng/diet_vs2015/MgDev/setenvironment.bat
===================================================================
--- sandbox/jng/diet_vs2015/MgDev/setenvironment.bat 2015-10-23 13:13:57 UTC (rev 8794)
+++ sandbox/jng/diet_vs2015/MgDev/setenvironment.bat 2015-10-23 13:27:10 UTC (rev 8795)
@@ -65,17 +65,23 @@
:setvars
IF "%PLATFORM%"=="Win32" SET PLATFORM_CLR=x86
+rem ==================================================
+rem Based on existing makefiles, debug builds of MapGuide
+rem still expect release FDO binaries
+rem ==================================================
IF "%PLATFORM_CLR%"=="x64" (
SET TYPEBUILD=%CONFIGURATION%64
+ SET FDO_TYPEBUILD=Release64
) ELSE (
SET TYPEBUILD=%CONFIGURATION%
+ SET FDO_TYPEBUILD=Release
)
rem ==================================================
rem MapGuide vars
rem ==================================================
SET MG_DEV=%CD%
SET MG_OEM=%MG_DEV%\Oem
-SET MG_FDO_BIN=%MG_OEM_FDO_ROOT%\Bin\%TYPEBUILD%
+SET MG_FDO_BIN=%MG_OEM_FDO_ROOT%\Bin\%FDO_TYPEBUILD%
SET MG_COMMON=%MG_DEV%\Common
SET MG_SERVER=%MG_DEV%\Server
SET MG_WEB=%MG_DEV%\Web
More information about the mapguide-commits
mailing list