-
Notifications
You must be signed in to change notification settings - Fork 1
/
r3win.bat
24 lines (18 loc) · 1.12 KB
/
r3win.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
set cfg=Release
if "%1"=="debug" set cfg=Debug
if "%2"=="32" goto bitness32
echo Setting up the 64 bit version
copy /y src\Poser\addons\Reality\*.py "C:\Program Files\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
copy /y bin\w64\%cfg%\Reality.exe "C:\Program Files\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
echo Copying bin\w64\%cfg%\Reality_3.dll
copy /y bin\w64\%cfg%\Reality_3.dll "C:\Program Files\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
copy /y bin\w64\%cfg%\Reality.pyd "C:\Program Files\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
goto end
:bitness32
echo Setting up the 32 bit version
copy /y src\Poser\addons\Reality\*.py "C:\Program Files (x86)\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
copy /y bin\w32\%cfg%\Reality.exe "C:\Program Files (x86)\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
copy /y bin\w32\%cfg%\Reality_3.dll "C:\Program Files (x86)\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
copy /y bin\w32\%cfg%\Reality.pyd "C:\Program Files (x86)\Smith Micro\Poser pro 2012\Runtime\Python\addons\Reality"
:end