Talk:OHR++: Difference between revisions

From OHRRPGCE-Wiki
Jump to navigation Jump to search
(linux makefiles)
(More concise description of how to use the Debug.zip makefiles. If it is still an issue, I'll try to manually create the makefiles and add them to the svn)
Line 10: Line 10:


[[User:Bob the Hamster|Bob the Hamster]]: I have had no luck with the Linux makefiles in Debug.zip. I'm not even sure where to put them (I have every location that made any degree of sense to me, and none of them worked) Any special reason why they are not in subversion?
[[User:Bob the Hamster|Bob the Hamster]]: I have had no luck with the Linux makefiles in Debug.zip. I'm not even sure where to put them (I have every location that made any degree of sense to me, and none of them worked) Any special reason why they are not in subversion?
[[User:Inferior Minion|Inferior Minion]]: They're not in the svn for that very reason.  Eclipse is automatically generating them when I compile, and the managed make has been rather buggy (forcing me to clean the entire project at times just to compile a small change).  If I was manually writing the makefile, it would be in there, but thinking about dealing with the dependencies gives me a headache :). 
Hopefully this clears things up:
When in my home directory, I run the svn checkout command.  This creates ~/ohr++/.  I then downloaded Debug.zip to ~/ohr++/ and unzipped.  Here is a listing of my directory structure:
~/ohr++/
~/ohr++/src/ <-- Contains Source Code
~/ohr++/Debug/ <-- Contains the makefiles and is created when unzipping
cd ~/ohr++/Debug/
make should now work.  I then call ohr++ using the following command:
~/ohr++/Debug/ohr++ /path/to/RPG
The only dependency you might not have is [http://freeglut.sourceforge.net/ freeglut]

Revision as of 14:38, 30 November 2006

Bob the Hamster: I see the url for browsing the code online, what is the url for checking out the repository with the subversion client?

Inferior Minion: I use Apache as my SVN server. Use the following command:

svn checkout http://svn.castleparadox.com/repos/ohr++/

I should really add a Makefile, but I currently use Eclipse which manages the makefile for me. I've uploaded a zip of the Debug directory, which is basically the makefile and folder structure in which the object files are created, here. Put the Debug directory in the same location as the src directory and then run make from within Debug. I really don't want to include that makefile with the source, but creating the makefile without the use of an IDE would be a pain. The only other thing I should mention is that as of right now, main is hardcoded to use a Jade.RPG file found in my home directory when no arguments are passed to ohr++. Either change that path in main.cpp or run ohr++ as follows:

./ohr++ /path/to/RPG

Bob the Hamster: I have had no luck with the Linux makefiles in Debug.zip. I'm not even sure where to put them (I have every location that made any degree of sense to me, and none of them worked) Any special reason why they are not in subversion?


Inferior Minion: They're not in the svn for that very reason. Eclipse is automatically generating them when I compile, and the managed make has been rather buggy (forcing me to clean the entire project at times just to compile a small change). If I was manually writing the makefile, it would be in there, but thinking about dealing with the dependencies gives me a headache :).

Hopefully this clears things up:

When in my home directory, I run the svn checkout command. This creates ~/ohr++/. I then downloaded Debug.zip to ~/ohr++/ and unzipped. Here is a listing of my directory structure:

~/ohr++/
~/ohr++/src/ <-- Contains Source Code
~/ohr++/Debug/ <-- Contains the makefiles and is created when unzipping

cd ~/ohr++/Debug/

make should now work. I then call ohr++ using the following command:

~/ohr++/Debug/ohr++ /path/to/RPG

The only dependency you might not have is freeglut