|
From: Edward K. C. <ek...@lg...> - 2005-08-10 22:06:12
|
On Aug 10, 2005, at 17:30, James W. Walker wrote:
> "Edward K. Chew" <ek...@lg...> wrote:
>
>> Well, I managed to compile quesa despite the permissions problem,
>> though my SDK directory is most likely incomplete. cvs craps out in
>> the middle of quesa/SDK/Examples, so I started out with only that.
>> I quickly inferred the existence of an quesa/SDK/Includes directory,
>> so I checked that out separately. At present, then, my copy
>> consists of the following:
>>
>> quesa
>> Development
>> Documentation
>> SDK
>> Examples
>> Background Test
>> Camera Test
>> Dump Group
>> Geom Test (incomplete)
>> Includes
>> Libraries (created during the build, I think)
>>
>> If someone could tell me what I might still be missing in terms of
>> examples, etc., I could probably check out the rest of it in a
>> piecemeal fashion. I am not a cvs guru, and have yet to find a way
>> to get at a listing of the whole directory hierarchy (cvs log, for
>> example, dies at the same point as checkout).
>>
>
> The Examples folder also has Import Test, Light Test, Shader Test,
> Qut, Support Files, and Viewer Test. The SDK folder also includes
> an Extras folder (including my new VRML reader plug-in) and a
> Models folder. The Models folder is just elementary test models,
> not as fancy as the ones in Support Files/Models.
Thanks! I think I got everything other than that pesky Geom Test
using the following script. (I stuck a -l option in there at the
last moment to log you in the first time. Hopefully, I did that right.)
#!/bin/sh
cvs_opts="-d :pserver:ano...@cv...:/cvsroot/quesa"
while getopts l opt; do
case $opt in
l) cvs $cvs_opts login;;
esac
done
cvs_opts="$cvs_opts -z 9 co"
cvs $cvs_opts "quesa/Development"
cvs $cvs_opts "quesa/Documentation"
cvs $cvs_opts "quesa/SDK/Examples/Background Test"
cvs $cvs_opts "quesa/SDK/Examples/Camera Test"
cvs $cvs_opts "quesa/SDK/Examples/Shader Test"
cvs $cvs_opts "quesa/SDK/Examples/Qut"
cvs $cvs_opts "quesa/SDK/Examples/Support Files"
cvs $cvs_opts "quesa/SDK/Examples/Viewer Test"
cvs $cvs_opts "quesa/SDK/Includes"
cvs $cvs_opts "quesa/SDK/Extras"
cvs $cvs_opts "quesa/SDK/Models"
|