Thread: [Plib-users] BorlandC++
Brought to you by:
sjbaker
From: Deungsan <Deu...@ny...> - 2000-11-18 21:14:27
|
Can anyone halp me with installing PLIB for Borland C++ Builder 5.0 on = Window 98? Thanks, Deungsan, |
From: Wolfram K. <w_...@rz...> - 2000-11-20 12:38:29
|
Deungsan wrote: >Can anyone halp me with installing PLIB for Borland C++ Builder 5.0 on Window 98? I dont know whether someone is using C++-builder. But several people here use Windo$, so if you have any concrete problems we might be able to solve, dont hesitate to ask. I would guess you should create a "project" for each of the ahm, projects :-) like ssg, sg, fnt, pui etc. Then add all the source-files (*.cxx) from the directory to your project. Then try to compile :-). You will then get errors because some projects need others, for example ssg needs ul and sg. So, add ul.lib and sg.lib to the linker-input for ssg. That should be it. >Deungsan, Bye bye, Wolfram. |
From: Deungsan <Deu...@ny...> - 2000-11-21 08:04:48
|
Thanks, Wolfram, Following the instructions of the 'readmes' I made the following project file for the example 'sg_squd_test.cxx', USE("vctobpr.log", File); /* The above instruciton is a file made by Visual C++ to BCC conversion utility in BCC++ */ USELIB("..\..\..\plib-1.2.0\src\sg\Release\sg.lib"); USELIB("..\..\..\plib-1.2.0\src\ssg\Release\ssg.lib"); USELIB("..\..\..\plib-1.2.0\src\sl\Release\sl.lib"); USELIB("..\..\..\plib-1.2.0\src\pui\Release\pui.lib"); USELIB("..\..\..\plib-1.2.0\src\js\Release\js.lib"); USELIB("..\..\..\plib-1.2.0\src\fnt\Release\fnt.lib"); #define WinMain (1) What I got is a link err message:'unable to open file "ODBCCP32.LIB" ' I wish that someone BCC++ users would help me with this.sgMakeQuat. Next, attracted by a neat set of simple geometry 'sg' functions (stand alone), I separated 'sg' section, and ran the example 'sg_squd_test.cxx' with 'sg.cxx' and 'sg.h'. I got err messages for 'sgMakeQuat' and 'sgMakeRotMat4'. (2) I am wondering where the bodies of these functions are in standalone functions. Deungsan, ----- Original Message ----- From: Wolfram Kuss <w_...@rz...> To: <pli...@li...> Sent: Monday, November 20, 2000 7:38 AM Subject: Re: [Plib-users] BorlandC++ > Deungsan wrote: > > >Can anyone halp me with installing PLIB for Borland C++ Builder 5.0 on Window 98? > > I dont know whether someone is using C++-builder. > But several people here use Windo$, so if you have any concrete > problems we might be able to solve, dont hesitate to ask. > > I would guess you should create a "project" for each of the ahm, > projects :-) like ssg, sg, fnt, pui etc. Then add all the source-files > (*.cxx) from the directory to your project. Then try to compile :-). > You will then get errors because some projects need others, for > example ssg needs ul and sg. So, add ul.lib and sg.lib to the > linker-input for ssg. That should be it. > > >Deungsan, > > Bye bye, > Wolfram. > _______________________________________________ > plib-users mailing list > pli...@li... > http://lists.sourceforge.net/mailman/listinfo/plib-users |
From: Wolfram K. <w_...@rz...> - 2000-11-21 16:10:39
|
Deungsan wrote: >Thanks, Wolfram, > >Following the instructions of the 'readmes' > >I made the following project file for the example 'sg_squd_test.cxx', 'sg_squd_test.cxx'? Which plib-version do you use? >(1) What I got is a link err message:'unable to open file "ODBCCP32.LIB" ' I have just renamed ODBCCP32.LIB on my computer and can still compile all of plib. ODBC sounds like database drivers to me. You should a) Try to find out who uses ODBCCP32.LIB. What's the exact error message and when (compiling what) do you get it? I think you should try to compile the plib-sub-projects as "*.lib" and only then create applications. b) If all else fails, ODBCCP32.LIB is in the platform sdk, which might be free (of charge). >I wish that someone BCC++ users would help me with this.sgMakeQuat. > >Next, attracted by a neat set of simple geometry 'sg' functions (stand >alone), I separated 'sg' section, and ran the example 'sg_squd_test.cxx' >with 'sg.cxx' and 'sg.h'. I got err messages for 'sgMakeQuat' and >'sgMakeRotMat4'. (2) I am wondering where the bodies of these functions are The bodies of the two overloaded sgMakeRotMat4-functions are in sg.cxx and sg.h. Steve is a big fan of inline-stuff. I can't find sgMakeQuat - maybe because I use the newest plib from cvs. >Deungsan, Bye bye, Wolfram. |
From: Deungsan <Deu...@ny...> - 2000-11-22 03:43:14
|
(1) There is no "ODBCCP32.LIB" in my BCB 5.0. I found a report about this in a Borland news group. Hope I will get the key soon. (2) No problem with the missing bodies of functions 'sgMakeQuat' and 'sgMakeRotMat4'. I made them (of course I tried plib1.2.0 and the newer one, which ended with the same errors). One more, there is a function named "sgMakeRotMat42" in the 'sg.cxx'. Wonder whether this is the same family of overloaded as the above 'sgMakeRotMat4' or an independent 4 to 2 transformation function. (3) New question: Is there 'glut' compatible with BCB 5.0? Many thanks, Wolfram, Deungsan, |
From: Norman V. <nh...@ca...> - 2000-11-22 04:06:53
|
Deungsan writes: > >(3) New question: Is there 'glut' compatible with BCB 5.0? http://www.xmission.com/~nate/glut.html |