Linking: https://bugs.kde.org/show_bug.cgi?id=362593
Earlier: Getting Dolphin KF5 sources and building own version to the /opt/: https://www.kubuntuforums.net/showth...l=1#post379038
Debian based - 'Get the build dependencies': https://wiki.debian.org/BuildingTuto...d_dependencies
Editing
.../src/dolphinmainwindow.cpp
Change:
to
Compiling
Testing
Konsole:
Seems to work...
Earlier: Getting Dolphin KF5 sources and building own version to the /opt/: https://www.kubuntuforums.net/showth...l=1#post379038
Debian based - 'Get the build dependencies': https://wiki.debian.org/BuildingTuto...d_dependencies
Editing
.../src/dolphinmainwindow.cpp
Change:
Code:
terminalDock->setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea);
Code:
terminalDock->setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
Code:
mkdir -p builddir
Code:
cd builddir && cmake .. \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_PREFIX_PATH=/opt/konsole \ -DCMAKE_INSTALL_PREFIX=/opt/konsole \ -DLIB_INSTALL_DIR=lib \ -DKDE_INSTALL_USE_QT_SYS_PATHS=off \ -DBUILD_TESTING=OFF
Code:
make
Code:
sudo make install
Konsole:
Code:
export LD_LIBRARY_PATH=/opt/konsole/lib; /opt/konsole/bin/dolphin
Seems to work...
Comment