diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-30 22:19:27 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-30 22:19:27 -0400 |
commit | fda22def5e685517433f686307ea00e90b6ec070 (patch) | |
tree | 481b0aa4a67cd8cfe39698ef9722fc4d1e038727 /README.md | |
parent | Setup lumina-fileinfo that that it can be used to create brand-new applicatio... (diff) | |
parent | Ensure that the quick command run routine will never hang the system for more... (diff) | |
download | lumina-fda22def5e685517433f686307ea00e90b6ec070.tar.gz lumina-fda22def5e685517433f686307ea00e90b6ec070.tar.bz2 lumina-fda22def5e685517433f686307ea00e90b6ec070.zip |
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -48,12 +48,19 @@ 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 (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) |