aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-01-20 16:34:30 -0500
committerKen Moore <moorekou@gmail.com>2015-01-20 16:34:30 -0500
commit7b8dbefbdbbf1fc9dab3aab204dea0fb9fbe0611 (patch)
tree4623bae375fb480b7425b592be9f57802b714890 /README.md
parentCompletely revamp the notepad desktop plugin so that it is now file-based ins... (diff)
downloadlumina-7b8dbefbdbbf1fc9dab3aab204dea0fb9fbe0611.tar.gz
lumina-7b8dbefbdbbf1fc9dab3aab204dea0fb9fbe0611.tar.bz2
lumina-7b8dbefbdbbf1fc9dab3aab204dea0fb9fbe0611.zip
Update README.md
Add info about the QT5LIBDIR compile variable
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 179133f5..041360c3 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ Example usage: "./make-linux-distro.sh MYDISTRO" (where there is a LuminaOS-MYDI
3) Run "qmake" on your local system to turn all the Qt project files (*.pro) into Makefiles
- NOTE: If any of the Qt project files is modified (either by you or from updating the Lumina source tree), you will need to be sure to repeat this step to place those changes into your local Makefiles (otherwise you may experience strange build failures).
- NOTE 2: The Qt5 version of qmake is located in /usr/local/lib/qt5/bin/qmake on FreeBSD, other OS's may have slightly different locations or names for qmake (such as qmake-qt5 for example)
- - NOTE 3: You can set a customized install PREFIX and LIBPREFIX via the qmake command as well. PREFIX determines the base directory to install Lumina ("/usr/local" by default), and LIBPREFIX determines the location to install/use libraries ("PREFIX/lib" by default). The syntax to set these custom values when running qmake is usually: "qmake PREFIX=/some/prefix LIBPREFIX=/some/lib/prefix"
+ - NOTE 3: You can set a customized install PREFIX, LIBPREFIX, and QT5LIBDIR variables via the qmake command. PREFIX determines the base directory to install Lumina ("/usr/local" by default), LIBPREFIX determines the location to install/use libraries ("PREFIX/lib" by default), and QT5LIBDIR determines the location of the Qt5 libraries ("LIBPREFIX/qt5" by default). The syntax to set these custom values when running qmake is usually: "qmake PREFIX=/some/prefix LIBPREFIX=/some/lib/prefix QT5LIBDIR=/main/qt5/library/dir"
4) Run "make" to compile all the Lumina projects (can be done as user)
bgstack15