aboutsummaryrefslogtreecommitdiff
path: root/lumina-search
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-12-23 08:46:02 -0500
committerKen Moore <ken@pcbsd.org>2014-12-23 08:46:02 -0500
commit7531a620650cdf0985525775ca84160933e99f26 (patch)
tree89880be799e8da8fc10774c66f4a9fe77fdb8749 /lumina-search
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-7531a620650cdf0985525775ca84160933e99f26.tar.gz
lumina-7531a620650cdf0985525775ca84160933e99f26.tar.bz2
lumina-7531a620650cdf0985525775ca84160933e99f26.zip
Clean up all the Qt5 *.pro files a bit. Now they should always work.
Also do a large clean up of the file operations in lumina-fm: 1) When doing copies of directories, make sure to properly copy all child files/dirs (no matter how deep) 2) Clean the order of directory copies so that you can successfull make a copy of a directory into itself (copy ~/Test -> ~/Test/Test for example) 3) Check for attempting to *move* a directory into itself and show a warning to the user about an invalid operation. 4) Get the total number of files/dirs to be operated on before starting operations. This allows the UI to be more detailed about what it is doing at that particular time. 5) If a directory fails to copy for some reason, don't try to copy all the children of that directory either (they will all fail and just bloat the list of errors)
Diffstat (limited to 'lumina-search')
-rw-r--r--lumina-search/lumina-search.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-search/lumina-search.pro b/lumina-search/lumina-search.pro
index fcc6ae0f..dba757dc 100644
--- a/lumina-search/lumina-search.pro
+++ b/lumina-search/lumina-search.pro
@@ -21,7 +21,7 @@ FORMS += MainUI.ui
INCLUDEPATH += ../libLumina $$PREFIX/include
-LIBS += -L../libLumina -lLuminaUtils
+LIBS += -L../libLumina -L$$PREFIX/lib -lLuminaUtils
LRELEASE = $$PREFIX/lib/qt5/bin/lrelease
bgstack15