summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorJani Honkonen <jani.honkonen@digia.com>2012-06-12 15:20:48 +0300
committerJani Honkonen <jani.honkonen@digia.com>2012-06-12 15:55:33 +0300
commit3525e4e5ffa31812c2d6c09d71f42b9f739d622a (patch)
tree608733ead7c46bdbe3d0a12471085095e2393dba /README
parent6a4c0baf9e468eae447e056422869c43b33fdd6d (diff)
Adding support for static builds.
Diffstat (limited to 'README')
-rw-r--r--README15
1 files changed, 12 insertions, 3 deletions
diff --git a/README b/README
index 7adaba5b..0d39b63b 100644
--- a/README
+++ b/README
@@ -24,14 +24,17 @@ licenses/
Building
========
-Configure project with qmake:
- qmake CONFIG+=release
+Configure project with qmake. On Windows by default both debug and release
+versions are built. On other platforms you need to specify the version
+(default is debug):
+ (Windows) qmake
+ (Other platforms) qmake CONFIG+=release
Build poject with make:
(Linux) make
(Windows with MinGw) mingw32-make
(Visual Studio) nmake
- (OSX) make
+ (OSX) make
If you want to install the libraries to your Qt library directory use:
make install
@@ -39,6 +42,12 @@ If you want to install the libraries to your Qt library directory use:
If you want to uninstall the libraries
make uninstall
+Building as a statically linked library
+=======================================
+
+The same as above applies you will just have to add staticlib to the CONFIG:
+ qmake CONFIG+=staticlib
+
Documentation
=============