I have downloaded the latest CS from subversion using :
svn co
https://crystal.svn.sourceforge.net/svnroot/crystal/CS/trunk CS_latest
I then installed the winlibs file cs-win32libs-1.3_003.exe
I am using visual c++ express 9 so I open the solution file mk/msvc9/wkstypical
I Then click on build solution but there are a few errors listed about missing files.
This one I get in several places.
c:\CS_latest\include\csutil/zip.h(32) : fatal error C1083: Cannot open include file: 'zlib.h': No such file or directory
LINK : fatal error LNK1181: cannot open input file 'zlib.lib'
I get this one when compiling libcrystalspace_opengl.
LINK : fatal error LNK1181: cannot open input file '..\..\out\release9\libs\libcrystalspace.lib'
This is while compiling plgsprcal3dldr
..\..\plugins\mesh\sprcal3d\persist\sprcal3dldr.cpp(52) : fatal error C1083: Cannot open include file: 'cal3d/loader.h': No such file or directory
from plgsndsyswin
c:\cs_latest\plugins\sndsys\renderer\software\drivers\directsound\driver_ds.h(36) : fatal error C1083: Cannot open include file: 'dsound.h': No such file or directory
c:\cs_latest\plugins\sndsys\renderer\openal\source.h(30) : fatal error C1083: Cannot open include file: 'AL/al.h': No such file or directory
c:\cs_latest\plugins\video\render3d\shader\shaderplugins\glshader_cg\glshader_cg.h(31) : fatal error C1083: Cannot open include file: 'Cg/cg.h': No such file or directory
There are probably more that I missed.
In all there were 19 succeeded and 167 failed.
I thought that installing the winlibs should take care of the external libraries like zlib. I followed the building guide in the manual.
what am I missing?