Skip to content

Commit

Permalink
fixed the script. closes openframeworks#99
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Lieberman committed Dec 21, 2009
1 parent 81dd6be commit 18c34c3
Showing 1 changed file with 28 additions and 21 deletions.
49 changes: 28 additions & 21 deletions scripts/win_cb/compileAllExamples.bat
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@


for /d %%X in (..\apps\*) do (
cd %%X

for /d %%Y in (*) do (
cd %%Y

for %%Z in (*.cbp) do (


"C:\Program Files\CodeBlocks\codeblocks.exe" /na /nd --build %%Z
)
cd ../
)


cd ../
)

cd ../scripts
@echo off


set OLDDIR=%CD%

cd ..\..\libs\openFrameworksCompiled\project\win_cb\
"C:\Program Files\CodeBlocks\codeblocks.exe" /na /nd --target="release" --build "openFrameworksLib.cbp"
cd ../../../../scripts/win_cb


for /d %%X in (..\..\apps\*) do (
cd %%X
echo compiling all folders in: %%X
for /d %%Y in (*) do (
cd %%Y

for %%Z in (*.cbp) do (

"C:\Program Files\CodeBlocks\codeblocks.exe" /na /nd --target= "release" --build %%Z

)
cd ../
)


)

chdir /d %OLDDIR%

0 comments on commit 18c34c3

Please sign in to comment.