summaryrefslogtreecommitdiff
path: root/win32/MinGW/Readme.txt
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhsoting.net>2014-08-06 18:24:22 +0200
committerJörg Frings-Fürst <debian@jff-webhsoting.net>2014-08-06 18:24:22 +0200
commit886e5076c8e81fd0cdfe82dbf4a80d19e778d594 (patch)
tree5c837ed148fbb2bd73dd310fcea07daeddc095d6 /win32/MinGW/Readme.txt
Imported Upstream version 0.8.0.1upstream/0.8.0.1
Diffstat (limited to 'win32/MinGW/Readme.txt')
-rw-r--r--win32/MinGW/Readme.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/win32/MinGW/Readme.txt b/win32/MinGW/Readme.txt
new file mode 100644
index 0000000..866312b
--- /dev/null
+++ b/win32/MinGW/Readme.txt
@@ -0,0 +1,27 @@
+-- Building
+To build <win32\liburiparser.a> run:
+ mingw32-make.exe
+in this directory.
+
+To build and run the test suite (file <win32\test.exe>) run:
+ mingw32-make.exe check
+in this directory.
+
+Alternatively, install MSYS <http://www.mingw.org/msys.shtml>, set
+it to use your MinGW distro during post-install and use ./configure in
+the root of this package to produce the Makefile. Then run make.
+
+
+-- Installation
+To install uriparser in your MinGW distro:
+1. Copy liburiparser.a to the MinGW lib directory.
+2. Copy the uriparser directory (in this package's include
+ directory) to the MinGW include directory.
+
+-- Hello world à la uriparser
+To build a C program that uses liburiparser:
+gcc -Wall -Wextra example.c -o example -O3 -s -luriparser
+
+
+--------------------------------------------------------------
+Readme contributed by Michael Anthony Puls II.