SGPEMv2 is an educational simulator for process scheduling policies in a monoprocessor computer.
Go to file
tchernobog b9c4813f11 - Add first draft of SWIG interface file, and create Python
loadable module. However, please note that:
	- All the methods accepting a Glib::ustring should
	not be exported, instead they should be replaced by wrapper
	functions accepting PyObject*.
	- The same thing applies to every other method accepting
	a ``non built-in'' data type
	- Return types should probably be wrapped, too
	- It may be a good idea to implement wrapper methods 
	that print out the content of a C++ object, 
	so that a Python user can do a simple "print schedStat". 
	This is achieved by adding a "__str__()" method to the 
	class. See the SWIG manual for further infos about
	returning const char* values.


git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@354 3ecf2c5c-341e-0410-92b4-d18e462d057c
2006-02-19 22:25:23 +00:00
config - Add template class implementing a smart pointer (a class of general utility) 2006-02-07 20:11:03 +00:00
distro/gentoo - Get DSO visibility check right in configure.ac. Now it should 2006-01-28 20:39:29 +00:00
doc - Merged branch to avoid recursive make 2006-02-19 14:34:41 +00:00
m4 - Merged branch to avoid recursive make 2006-02-19 14:34:41 +00:00
po - Update localizable string catalog 2006-02-17 23:41:43 +00:00
src - Add first draft of SWIG interface file, and create Python 2006-02-19 22:25:23 +00:00
AUTHORS - Lay out autotools foundations 2005-12-30 19:40:34 +00:00
COPYING - Lay out autotools foundations 2005-12-30 19:40:34 +00:00
ChangeLog - Change version number for first milestone release 2006-02-19 15:49:03 +00:00
Makefile.am - Add first draft of SWIG interface file, and create Python 2006-02-19 22:25:23 +00:00
NEWS - Lay out autotools foundations 2005-12-30 19:40:34 +00:00
README - Add some temporary infos about how to perform the 2006-02-19 14:54:53 +00:00
autogen.sh - Add support for automatic ChangeLog creation with svn2cl 2006-01-13 16:16:46 +00:00
configure.ac - Change version number for first milestone release 2006-02-19 15:49:03 +00:00
gettext.h - Added libtool, gettext support 2006-01-13 15:52:22 +00:00

README

SGPEMv2 is ... description of product.

Still to be written ... please refer to the 
Info manual in the meantime.

For convenience, here's a short glance at the 
build process (while the manual isn't finished):
in the source package root directory, type:

	mkdir =build && cd =build
	../configure --prefix=/path/to/installation/dir
	make
	su -c "make install"

if you want to generate API documentation via Doxygen:
	
	make apidox

if you want PDFs of the user and developer manuals,

	make pdf

As simple as that.