File indexing completed on 2024-04-28 15:29:45

0001 #!/bin/bash
0002 
0003 # Exit if something fails
0004 set -e
0005 
0006 mkdir -p build
0007 cd build
0008 
0009 cmake -DKDE_INSTALL_PLUGINDIR=`kf5-config --qt-plugins` -DCMAKE_BUILD_TYPE=Release  ..
0010 make -j$(nproc)
0011 sudo make install
0012 
0013 # KRunner needs to be restarted for the changes to be applied
0014 # we can just kill it and it will be started when the shortcut is invoked
0015 kquitapp5 krunner