You are not logged in.
Pages: 1
Yoy like me, want to evolve. I would like to install dfilemanager
https://sourceforge.net/p/dfilemanager/wiki/install/
git clone git://git.code.sf.net/p/dfilemanager/code dfilemanager-code
$ sudo apt-get install qt5-default qt5-qmake libqt5x11extras5-dev
$ cd dfilemanager-code
$ mkdir build
$ cd build
$ cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
if you are building for qt5 append -DQT5BUILD=ON to the parameters sent to cmake
$ make
$ sudo make install
Run
When cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
CMake Error at /usr/share/cmake-3.7/Modules/FindQt4.cmake:1318 (message):
Found unsuitable Qt version "5.7.1" from /usr/bin/qmake, this code requires
Qt 4.x
Call Stack (most recent call first):
CMakeLists.txt:44 (find_package)
When cmake ../ -DCMAKE_INSTALL_PREFIX-DQT5BUILD=ON=/usr
CMake Error at /usr/share/cmake-3.7/Modules/FindQt4.cmake:1318 (message):
Found unsuitable Qt version "5.7.1" from /usr/bin/qmake, this code requires
Qt 4.x
Call Stack (most recent call first):
CMakeLists.txt:44 (find_package)
I am stuck. I tried the search and apply solution without luck. Can you be of any assistance?
Offline
You have combined the two parameters into one. Instead of
cmake ../ -DCMAKE_INSTALL_PREFIX-DQT5BUILD=ON=/usr
try splitting into two discrete paremeters
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DQT5BUILD=ON
Offline
From the summary section of their git page:
DFM is a file manager written in Qt/C++, it does use one library from kdelibs, the solid lib for easy device handling.
is that dependency covered by the qt5 packages you installed?
You must unlearn what you have learned.
-- yoda
Offline
Thanks very much
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DQT5BUILD=ON
worked
dfilemanager is heavier than ranger and has got:
* multicolumn display
* offers cover flow
Last edited by fedora (2018-09-13 08:17:55)
Offline
Pages: 1