Reverted path changes. Scripts should be run from project root.
parent
9fcd1cb279
commit
603a8ab8c3
|
@ -1,10 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
../Scripts/build_frameworks.sh
|
./Scripts/build_frameworks.sh
|
||||||
../Scripts/build_preferences.sh
|
./Scripts/build_preferences.sh
|
||||||
../Scripts/build_plugins.sh
|
./Scripts/build_plugins.sh
|
||||||
|
|
||||||
cd ../Audio
|
cd Audio
|
||||||
xcodebuild -alltargets -configuration Release
|
xcodebuild -alltargets -configuration Release
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libs=( MAC MPCDec Ogg FLAC Shorten TagLib Vorbis WavPack MAD ID3Tag )
|
||||||
|
|
||||||
for lib in "${libs[@]}"
|
for lib in "${libs[@]}"
|
||||||
do
|
do
|
||||||
cd ../Frameworks/$lib
|
cd Frameworks/$lib
|
||||||
xcodebuild -alltargets -configuration Release
|
xcodebuild -alltargets -configuration Release
|
||||||
cd ..
|
cd ../..
|
||||||
done
|
done
|
||||||
|
|
|
@ -4,7 +4,7 @@ plugins=( CoreAudio MonkeysAudio Musepack Flac Shorten TagLib Vorbis WavPack MAD
|
||||||
|
|
||||||
for plugin in "${plugins[@]}"
|
for plugin in "${plugins[@]}"
|
||||||
do
|
do
|
||||||
cd ../Plugins/$plugin
|
cd Plugins/$plugin
|
||||||
xcodebuild -alltargets -configuration Release
|
xcodebuild -alltargets -configuration Release
|
||||||
cd ..
|
cd ../..
|
||||||
done
|
done
|
||||||
|
|
|
@ -4,7 +4,7 @@ prefs=( General )
|
||||||
|
|
||||||
for pref in "${prefs[@]}"
|
for pref in "${prefs[@]}"
|
||||||
do
|
do
|
||||||
cd ../Preferences/$pref
|
cd Preferences/$pref
|
||||||
xcodebuild -alltargets -configuration Release
|
xcodebuild -alltargets -configuration Release
|
||||||
cd ..
|
cd ../..
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue