aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorToni Uhlig <Toni.Uhlig@tq-group.com>2017-12-04 09:06:29 +0100
committerToni Uhlig <Toni.Uhlig@tq-group.com>2017-12-04 10:13:15 +0100
commit95ea0b05d3d4a4c1cbbaf63eb904c76bbd96bc40 (patch)
tree4536b2494293039afaf851d06367a5e86f56d39b /README
parent2c9c90ffbb8e4ebcef36fbcc1e9031ccc169b5d5 (diff)
README update
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 16 insertions, 1 deletions
diff --git a/README b/README
index d0ec659..f4af47b 100644
--- a/README
+++ b/README
@@ -26,7 +26,11 @@ Build with a shipped (static) wxWidgets version
2. Run `./autogen.sh`
and add an additional `--help` to set some package options.
+ You can cross compile for another architecture by setting `--host` and `--build` *explicitly*.
Example: `./autogen.sh --disable-gui`
+ OR
+ `./autogen.sh --host=i686-w64-mingw32 --build=x86_64-linux-gnu`
+ (cross compile from x86_64 linux to i686 Windows x64-API)
3. Run `make` or `make -j4` or `make -j4 V=1`
The argument -jN specifies the number of parallel build jobs.
@@ -37,10 +41,21 @@ Build with a dynamic wxWidgets version
======================================
1. Run `./autogen.sh --enable-host-wxwidgets`
- Build a dynamic linked version.
+ Build a binary which is dynamic linked against wxWidgets.
2. Run `make` (see above)
For a successful host-wxwudgets build you'll need an extra package.
`./autogen.sh --enable-host-wxwidgets`: libwxbase3.0-dev
+
+
+Additional source packages used by this project
+===============================================
+
+Format: Project (LICENSE): URL
+
+wxWidgets (LGPL like - allowing static linking for closed-source projects): https://github.com/wxWidgets/wxWidgets
+Fast C++ CSV Parser (BSD-3): https://github.com/ben-strasser/fast-cpp-csv-parser
+cpp-httplib (The Boost Software License 1.0): https://github.com/yhirose/cpp-httplib
+json11 (Dropbox): https://github.com/dropbox/json11