Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makedsp.vcnet.release.bat « src « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3050a2fe4ea44b12c12e8b749f6dd4dbf6fa03e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@echo off
for /D %%d in (*) do call :FOR2 %%d
rem cd ..
goto :EOF

:FOR2
set componentpath=%1
set dirname=%~n1
for %%p in (%componentpath%\*.pro) do if exist %%p call :DSP %%p

goto :EOF

:DSP
set drive=%~d1
set filepath=%~p1
cd %drive%%filepath%
rem echo %drive%%filepath%
set filename=%~n1
echo creating %filename%.vcproj from %filename%.pro ...
if %filename% == app (
  qmake -t vcapp -win32 -o %filename% %filename%.pro 
) else (
  qmake -t vclib -win32 -o %filename% %filename%.pro
)
cd..