mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 08:26:30 +00:00
f9815a0a3f
put new Versioning fix bugs
25 lines
603 B
Batchfile
25 lines
603 B
Batchfile
echo Make dirs, copy init dlls
|
|
REM Save the current directory
|
|
set CURRENT_DIR=%cd%
|
|
|
|
REM Change to the parent directory of the current location
|
|
cd /d %~dp0..
|
|
|
|
REM Remove and recreate the dist-dlls and dist-azaion directories
|
|
if exist dist-dlls rmdir dist-dlls /s /q
|
|
mkdir dist-dlls
|
|
if exist dist-azaion rmdir dist-azaion /s /q
|
|
mkdir dist-azaion
|
|
if exist dist rmdir dist /s /q
|
|
mkdir dist
|
|
|
|
echo Copying shared libs
|
|
|
|
REM Copy the shared libs from the source location to dist-dlls
|
|
robocopy "C:\\share" "dist-dlls" "*"
|
|
|
|
REM Return to the original directory
|
|
cd /d %CURRENT_DIR%
|
|
|
|
echo Init script completed.
|