Mini-XML: Difference between revisions
Jump to navigation
Jump to search
m →Usage |
mNo edit summary |
||
Line 6: | Line 6: | ||
| maintainer = | | maintainer = | ||
| contributor = | | contributor = | ||
| portedby = | | portedby = | ||
| version = 2. | | version = 2.6 | ||
| licence = GNU LGPL | | licence = GNU LGPL | ||
| download = | | download = https://sourceforge.net/projects/devkitpro/files/portlibs | ||
| website = http://www.minixml.org/ | | website = http://www.minixml.org/ | ||
| discussion = | | discussion = | ||
| source = | | source = | ||
}} | }} | ||
'''Mini-XML''' is a library ported for Wii to load and save XML config files in your GameCube/Wii apps. | |||
'''Mini-XML''' is a library ported for Wii to load and save XML config files in your | |||
== Install == | == Install == | ||
Line 24: | Line 23: | ||
Option 2: | Option 2: | ||
*setup your Makefile to use the mxml dir for the libs and includes | *setup your Makefile to use the mxml dir for the libs and includes | ||
== Usage == | == Usage == | ||
Line 39: | Line 32: | ||
#include "mxml.h" | #include "mxml.h" | ||
</source> | </source> | ||
Add the extra libraries to link with the project in your Makefile: | Add the extra libraries to link with the project in your Makefile: |
Revision as of 22:09, 16 October 2009
Mini-XML | |
General | |
---|---|
Author(s) | Matthew Sweet |
Type | Ported Libraries |
Version | 2.6 |
Licence | GNU LGPL |
Links | |
Download | |
Website |
Mini-XML is a library ported for Wii to load and save XML config files in your GameCube/Wii apps.
Install
Option 1:
- copy mxml/include/mxml.h to $(DEVKITPPC)/libogc/include
- copy mxml/lib/libmxml.a to $(DEVKITPPC)/libogc/lib/*/
Option 2:
- setup your Makefile to use the mxml dir for the libs and includes
Usage
You need to use libFAT to make libmxml work.
Include these for mxml:
#include <fat.h>
#include "mxml.h"
Add the extra libraries to link with the project in your Makefile:
LIBS := -lfat -lmxml ...
Documentation
Tons of doc at http://www.minixml.org