2009-02-16 01:28:24 +05:00
REM *********************************************************************************
REM *** Netgen Library (nglib) Windows Post-Build Script
REM *** Author: Philippose Rajan
REM *** Date: 15/02/2009
REM ***
REM *** Used to perform an "Install" of the generated Dynamic Link Library (DLL)
REM *** and the corresponding LIB file.
REM ***
REM *** Call from Visual C++ using:
REM *** postBuild_nglib.bat $(ProjectName) $(TargetFileName) $(ConfigurationName) $(ProjectDir)
REM *********************************************************************************
2009-04-06 04:12:45 +06:00
if [%1 ]== [] goto InputParamsFailed
2009-04-04 16:02:53 +06:00
set PROJ_NAME = %~1
set PROJ_EXEC = %~2
set BUILD_TYPE = %~3
set PROJ_DIR = %~4
2009-02-16 01:28:24 +05:00
REM *** Change these Folders if required ***
2009-04-06 04:12:45 +06:00
REM Check if the environment variable NETGENDIR exists,
REM and use it as the installation folder
if defined NETGENDIR (
echo Environment variable NETGENDIR found: %NETGENDIR%
set INSTALL_FOLDER = %NETGENDIR% \..
) else (
echo Environment variable NETGENDIR not found.... using default location!!!
set INSTALL_FOLDER = %PROJ_DIR% ..\..\%PROJ_NAME% -inst
)
set NGLIB_LIBINC = %PROJ_DIR% ..\nglib
2009-02-16 01:28:24 +05:00
echo POSTBUILD Script for %PROJ_NAME% ........
REM *** Embed the Windows Manifest into the Executable File ***
2009-07-26 00:28:00 +06:00
REM echo Embedding Manifest into the DLL: %PROJ_EXEC% ....
REM mt.exe -manifest "%PROJ_DIR%%PROJ_NAME%\%BUILD_TYPE%\%PROJ_EXEC%.intermediate.manifest" "-outputresource:%PROJ_DIR%%PROJ_NAME%\%BUILD_TYPE%\%PROJ_EXEC%;#2"
REM if errorlevel 1 goto ManifestFailed
REM echo Embedding Manifest into the DLL: Completed OK!!
2009-02-16 01:28:24 +05:00
REM *** Copy the DLL and LIB Files into the install folder ***
echo Installing required files into %INSTALL_FOLDER% ....
2009-04-06 04:12:45 +06:00
xcopy " %PROJ_DIR% %PROJ_NAME% \ %BUILD_TYPE% \ %PROJ_EXEC% " " %INSTALL_FOLDER% \bin\ " /i /d /y
if errorlevel 1 goto DLLInstallFailed
echo Installing %PROJ_EXEC% : Completed OK!!
xcopy " %PROJ_DIR% %PROJ_NAME% \ %BUILD_TYPE% \ %PROJ_NAME% .lib " " %INSTALL_FOLDER% \lib\ " /i /d /y
if errorlevel 1 goto LibInstallFailed
echo Installing %PROJ_NAME% .lib: Completed OK!!
REM *** Copy the include file nglib.h into the install folder ***
echo Installing %PROJ_NAME% .h into %INSTALL_FOLDER% \include ....
xcopy " %NGLIB_LIBINC% \ %PROJ_NAME% .h " " %INSTALL_FOLDER% \include\ " /i /d /y
if errorlevel 1 goto LibInstallFailed
echo Installing %PROJ_NAME% .h: Completed OK!!
2009-02-16 01:28:24 +05:00
REM *** Clean up the build directory by deleting the OBJ files ***
REM echo Deleting the %PROJ_NAME% build folder %PROJ_DIR%%PROJ_NAME% ....
REM rmdir %PROJ_DIR%%PROJ_NAME% /s /q
REM *** If there have been no errors so far, we are done ***
goto BuildEventOK
2009-04-06 04:12:45 +06:00
REM *** Error Messages for each stage of the post build process ***
: InputParamsFailed
echo POSTBUILD Script for %PROJ_NAME% FAILED..... Invalid number of input parameters!!!
2009-02-16 01:28:24 +05:00
exit 1
2009-04-06 04:12:45 +06:00
: ManifestFailed
echo POSTBUILD Script for %PROJ_NAME% FAILED..... Manifest not successfully embedded!!!
exit 1
: DLLInstallFailed
echo POSTBUILD Script for %PROJ_NAME% FAILED..... Error copying the %PROJ_NAME% DLL into install folder!!!
exit 1
: LibInstallFailed
echo POSTBUILD Script for %PROJ_NAME% FAILED..... Error copying %PROJ_NAME% .lib or %PROJ_NAME% .h into install folder!!!
exit 1
2009-02-16 01:28:24 +05:00
: BuildEventOK
echo POSTBUILD Script for %PROJ_NAME% completed OK.....!!