public
Description: Read and Play Ogg files using low level Ogg libraries
Homepage: http://www.bluishcoder.co.nz
Clone URL: git://github.com/doublec/plogg.git
plogg / README_WIN32
100644 31 lines (22 sloc) 1.011 kb
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
26
27
28
29
30
31
Building plogg on win32 with Visual Studio 2005
===============================================
 
The following are also required but included as submodules:
 
  - libogg
  - libtheora
  - libvorbis
  - libsydneyaudio
 
First retrieve the thirdparty submodules:
 
  $ git clone git://github.com/doublec/plogg.git
  $ cd plogg
  $ git submodule init
  $ git submodule update
 
plogg also requires SDL to build. Download the SDL development library
at www.libsdl.org, e.g:
http://www.libsdl.org/release/SDL-devel-1.2.13-VC8.zip
 
Extract the SDL-devel library, and copy the contents of the SDL-devel
include/ directory into plogg/thirdparty/SDL/include/SDL .
Copy the SDL-devel lib directory to plogg/thirdparty/SDL.lib .
 
Once all the thirdparty libraries are downloaded, you can build everything
with the plogg solution file in win32/VS2005/plogg.sln.
 
You'll need to copy SDL.dll from the SDL-devel/lib directory into the same
directory as your plogg.exe, or into C:\Windows\System32.