Salome HOME
passage to petsc 3.14.0
[tools/sat_salome.git] / products / compil_scripts / msvc.bat
1 @echo off
2
3 echo ##########################################################################
4 echo msvc %VERSION%
5 echo ##########################################################################
6
7 if NOT exist "%PRODUCT_INSTALL%\bin" mkdir %PRODUCT_INSTALL%\bin
8 REM clean BUILD directory
9 if exist "%BUILD_DIR%" rmdir /Q /S %BUILD_DIR%
10 mkdir %BUILD_DIR%
11
12 cd %SOURCE_DIR%
13
14 xcopy *.dll %PRODUCT_INSTALL%\bin /E /I /Q /Y
15 if NOT %ERRORLEVEL% == 0 (
16     echo ERROR on xcopy
17     exit 1
18 )
19
20 echo.
21 echo ########## END