added library compilation script
parent
493e749bd4
commit
192af8cb46
3
COMPILE
3
COMPILE
|
@ -1,2 +1,5 @@
|
||||||
To compile Cog, you must first compile all of the projects in the Libraries folder with the Deployment build configuration.
|
To compile Cog, you must first compile all of the projects in the Libraries folder with the Deployment build configuration.
|
||||||
|
|
||||||
|
To make this easier, I have created a bash script named build_libs.sh in the Libraries folder. Just run that in a terminal, and when it is finished, all the libraries should be built.
|
||||||
|
|
||||||
If you have any problems, email me at vspader@users.sf.net
|
If you have any problems, email me at vspader@users.sf.net
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
for directory in *
|
||||||
|
do
|
||||||
|
if [ -d $directory ]; then
|
||||||
|
cd $directory
|
||||||
|
xcodebuild -configuration Deployment
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
done
|
14
PLANNED
14
PLANNED
|
@ -1,14 +0,0 @@
|
||||||
0.0.2
|
|
||||||
mpeg4 support (FAAD)
|
|
||||||
shorten support
|
|
||||||
hotkeys for next/prev/stop/shuffle/repeat & info window
|
|
||||||
|
|
||||||
0.0.3
|
|
||||||
Stream support for shoutcast/oggcast, or just opening files via URL.
|
|
||||||
|
|
||||||
0.0.4+
|
|
||||||
A queue system, in which a user can option+click a song, and it will be placed
|
|
||||||
in a queue, whcih will pick the next song.
|
|
||||||
Audioscrobbler.
|
|
||||||
look into realplayer (cook in mplayer) and wma
|
|
||||||
visualizer? (libvisualizer perhaps?)
|
|
Loading…
Reference in New Issue