aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-28 13:31:34 -0400
committerKen Moore <moorekou@gmail.com>2016-06-28 13:31:34 -0400
commit845d9ff9425a18d11dc9934891d16c3e1a2542ed (patch)
tree09aaa2ab243781c6f7e0083189a655fc33a4666a
parentUpdate the README to account for the new build system flags. (diff)
downloadlumina-845d9ff9425a18d11dc9934891d16c3e1a2542ed.tar.gz
lumina-845d9ff9425a18d11dc9934891d16c3e1a2542ed.tar.bz2
lumina-845d9ff9425a18d11dc9934891d16c3e1a2542ed.zip
Also add info about the new "DEFAULT_SETTINGS" build flag to the readme.
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 93ad00af..aba4870a 100644
--- a/README.md
+++ b/README.md
@@ -48,16 +48,18 @@ How to build from source
> Project MESSAGE: Build Settings Loaded: FreeBSD
- * 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.
+ * Build Note: Compile-time options may be set at this time using qmake. 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 so that it can be corrected for future builds.
* 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`
+ * DEFAULT_SETTINGS: An optional flag to install the default settings/wallpaper for some other operating system (Note: Make sure the OS name is capitalized appropriately!)
+ Example: `qmake DEFAULT_SETTINGS=TrueOS`
* 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)
+ * debug: (not recommended for release builds) Do not strip all the debugging information out of the binaries (useful 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