16 lines
930 B
Plaintext
Raw Normal View History

2013-06-30 22:04:03 -07:00
=======================================================================================================
2013-06-30 22:04:43 -07:00
================================= Adding the Library to The Project ===================================
2013-06-30 22:04:03 -07:00
=======================================================================================================
2013-06-30 18:21:51 -07:00
2013-06-30 21:58:36 -07:00
1. Include the "asm-xml.h" file in your source file.
2013-06-30 18:17:42 -07:00
2013-06-30 21:58:36 -07:00
2. Link your project with the AsmXml object file. (see below)
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
2013-06-30 18:17:42 -07:00
Here are some tips to use it with various configurations:
MSVC 6: Add the \ms-coff\asm-xml.obj file to your project.
MinGW: Link your project with \ms-coff\asm-xml.obj.
Linux: Link your project with /elf/asm-xml.o.
Mac OS X: Link your project with /mach-o/asm-xml.o.
2013-06-30 21:58:36 -07:00
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
2013-06-30 22:04:03 -07:00
=======================================================================================================