diff options
author | Ken Moore <moorekou@gmail.com> | 2016-05-23 12:29:06 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-05-23 12:29:06 -0400 |
commit | 6e048b540dbce694f772bc8f6f3261e93d5f0170 (patch) | |
tree | 938628221a3ca89d03312d6ed978df89c006de4c /src-qt5/OS-detect.pri | |
parent | Have the lock button in the start menu use the "LaunchItem()" functio so the ... (diff) | |
download | lumina-6e048b540dbce694f772bc8f6f3261e93d5f0170.tar.gz lumina-6e048b540dbce694f772bc8f6f3261e93d5f0170.tar.bz2 lumina-6e048b540dbce694f772bc8f6f3261e93d5f0170.zip |
Add a note to the OS-detect.pri file that the OS and LINUX_DISTRO variables should not be forcibly defined outside of the Lumina build system.
Diffstat (limited to 'src-qt5/OS-detect.pri')
-rw-r--r-- | src-qt5/OS-detect.pri | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri index 0fb6e76d..54ffb2ce 100644 --- a/src-qt5/OS-detect.pri +++ b/src-qt5/OS-detect.pri @@ -1,6 +1,7 @@ # ============================================= # Subroutine for project files to detect which OS is compiling the project # Generic variables it sets for internal use: OS, LINUX_DISTRO (if OS=="Linux") +# **DO NOT** forcibly define the OS and LINUX_DISTRO qmake variables from the command line!! # ============================================= # Main Build Variables (generally for finding existing files): # PREFIX: Base install directory (${PREFIX}/[bin/share/etc/include] will be used) @@ -75,7 +76,7 @@ isEmpty(OS){ message( $$MSG ) # Setup the dirs needed to find/load libraries - INCLUDEPATH +=$${PREFIX}/include + INCLUDEPATH +=$${PREFIX}/include # If the detailed install variables are not set - create them from the general vars isEmpty(L_BINDIR){ L_BINDIR = $${PREFIX}/bin } |