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
2009-07-27 11:12:31 +06:00
set BUILD_ARCH = %~4
set PROJ_DIR = %~5
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
2010-03-22 02:00:17 +05:00
set W_WO_OCC = %BUILD_TYPE:~-4,3%
2009-04-06 04:12:45 +06:00
if defined NETGENDIR (
echo Environment variable NETGENDIR found: %NETGENDIR%
set INSTALL_FOLDER = %NETGENDIR% \..
) else (
echo Environment variable NETGENDIR not found.... using default location!!!
2010-03-22 02:00:17 +05:00
if /i " %W_WO_OCC% " == " OCC " (
set INSTALL_FOLDER = %PROJ_DIR% ..\..\%PROJ_NAME% -instOCC_%BUILD_ARCH%
) else (
set INSTALL_FOLDER = %PROJ_DIR% ..\..\%PROJ_NAME% -instNoOCC_%BUILD_ARCH%
)
2009-04-06 04:12:45 +06:00
)
set NGLIB_LIBINC = %PROJ_DIR% ..\nglib
2013-07-09 19:22:05 +06:00
set NETGEN_NGSINC = %PROJ_DIR% ..\libsrc
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-07-27 11:12:31 +06:00
if /i " %BUILD_ARCH% " == " win32 " (
xcopy " %PROJ_DIR% %PROJ_NAME% \ %BUILD_TYPE% \ %PROJ_EXEC% " " %INSTALL_FOLDER% \bin\ " /i /d /y
if errorlevel 1 goto DLLInstallFailed
)
if /i " %BUILD_ARCH% " == " x64 " (
xcopy " %PROJ_DIR% %PROJ_NAME% \ %BUILD_ARCH% \ %BUILD_TYPE% \ %PROJ_EXEC% " " %INSTALL_FOLDER% \bin\ " /i /d /y
if errorlevel 1 goto DLLInstallFailed
)
2009-04-06 04:12:45 +06:00
echo Installing %PROJ_EXEC% : Completed OK!!
2009-07-27 11:12:31 +06:00
if /i " %BUILD_ARCH% " == " win32 " (
xcopy " %PROJ_DIR% %PROJ_NAME% \ %BUILD_TYPE% \ %PROJ_NAME% .lib " " %INSTALL_FOLDER% \lib\ " /i /d /y
if errorlevel 1 goto LibInstallFailed
)
if /i " %BUILD_ARCH% " == " x64 " (
xcopy " %PROJ_DIR% %PROJ_NAME% \ %BUILD_ARCH% \ %BUILD_TYPE% \ %PROJ_NAME% .lib " " %INSTALL_FOLDER% \lib\ " /i /d /y
if errorlevel 1 goto LibInstallFailed
)
2009-04-06 04:12:45 +06:00
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!!
2013-07-09 19:22:05 +06:00
echo Installing NgSolve dependent header files into %INSTALL_FOLDER% \include ....
xcopy " %NETGEN_NGSINC% \include\nginterface.h " " %INSTALL_FOLDER% \include\ " /i /d /y
xcopy " %NETGEN_NGSINC% \include\nginterface_v2.hpp " " %INSTALL_FOLDER% \include\ " /i /d /y
xcopy " %NETGEN_NGSINC% \general\dynamicmem.hpp " " %INSTALL_FOLDER% \include\ " /i /d /y
xcopy " %NETGEN_NGSINC% \general\ngexception.hpp " " %INSTALL_FOLDER% \include\ " /i /d /y
xcopy " %NETGEN_NGSINC% \visualization\soldata.hpp " " %INSTALL_FOLDER% \include\ " /i /d /y
echo Installing external dependencies
if /i " %BUILD_ARCH% " == " x64 " (
2013-07-10 05:12:44 +06:00
xcopy " %PROJ_DIR% ..\..\ext_libs\pthreads-Win32\dll\x64\pthreadVC2.dll " " %INSTALL_FOLDER% \bin " /i /d /y
xcopy " %PROJ_DIR% ..\..\ext_libs\zlib\x64\lib\zlib1.dll " " %INSTALL_FOLDER% \bin " /i /d /y
2013-07-09 19:22:05 +06:00
REM if errorlevel 1 goto externalInstallFailed
)
if /i " %BUILD_ARCH% " == " win32 " (
2013-07-10 05:12:44 +06:00
xcopy " %PROJ_DIR% ..\..\ext_libs\pthreads-Win32\dll\x86\pthreadVC2.dll " " %INSTALL_FOLDER% \bin " /i /d /y
xcopy " %PROJ_DIR% ..\..\ext_libs\zlib\x86\lib\zlib1.dll " " %INSTALL_FOLDER% \bin " /i /d /y
2013-07-09 19:22:05 +06:00
REM if errorlevel 1 goto externalInstallFailed
)
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
2013-07-09 19:22:05 +06:00
: externalInstallFailed
echo POSTBUILD Script for %PROJ_NAME% FAILED..... Error copying external dependencies to install folder!!!
exit 1
2009-04-06 04:12:45 +06:00
2009-02-16 01:28:24 +05:00
: BuildEventOK
echo POSTBUILD Script for %PROJ_NAME% completed OK.....!!