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