aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-28 13:30:38 -0400
committerKen Moore <moorekou@gmail.com>2016-06-28 13:30:38 -0400
commitc5b037322dcfcc4d11e000a83060355c4013527b (patch)
tree04ee09f7f62da0e7bd9356c1caf7b1b72055ab20 /README.md
parentUpdate the coming-soon 0.9.1 port makefile for FreeBSD, and also setup the "D... (diff)
downloadlumina-c5b037322dcfcc4d11e000a83060355c4013527b.tar.gz
lumina-c5b037322dcfcc4d11e000a83060355c4013527b.tar.bz2
lumina-c5b037322dcfcc4d11e000a83060355c4013527b.zip
Update the README to account for the new build system flags.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 23fb6583..93ad00af 100644
--- a/README.md
+++ b/README.md
@@ -50,10 +50,15 @@ How to build from source
* Build Note: Compile-time options may be set at this time using qmake. The syntax for this is typically: `qmake CONFIG+="PREFIX=/some/prefix LIBPREFIX=/some/lib/prefix DESTDIR=/some/temporary/packaging/dir"`. This is typically not needed unless you are setting up Lumina for automated build/packaging. If the automatically-detected build settings for your particular OS are invalid or need adjustment, please update the "OS-detect.pri" file as needed and send in your changes.
* PREFIX: Determines the base directory used to install/run Lumina ("/usr/local" by default)
+ Example: `qmake PREFIX=/usr/local`
* LIBPREFIX: Determines the location to install the Lumina library ("PREFIX/lib" by default)
+ Example: `qmake LIBPREFIX=/usr/local/lib`
* DESTDIR: An optional directory where the compiled files will be placed temporary (such as for packaging/distributing via some other system).
+ Example: `qmake DESTDIR=/my/build/dir`
* WITH_I18N: (not recommended) Generate/install the partially-localized translation files. This option is typically only used by developers who need to test the localization systems. If you wish to install the full localization/translation files, please use the trueos/lumina-i18n repo instead.
-
+ Example: `qmake CONFIG+=WITH_I18N`
+ * debug: (not recommended for release builds) Do not strip all the debugging information out of the binaries (used for performing backtraces on builds that crash or for other development tests)
+ Example: `qmake CONFIG+=debug`
4) Run "make" to compile all the Lumina projects (can be done as user)
bgstack15