Hi, I just installed tag v1.5 from sources with all dependencies listed in README. Here are my build commands: $ cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local .. $ make $ make install cmake produces a warning(attached), but compilation and install took place without errors. Reproducible: Always Steps to Reproduce: 1. Start Choqok. 2. Click yes when it asks to configure an account, I accept. Actual Results: Empty configuration interface appears (attached). Expected Results: Being able to configure a Twitter account. While displaying empty configuration interface, Choqok command line prints: choqok(7751)/kdecore (trader) KServiceTypeTrader::defaultOffers: KServiceTypeTrader: serviceType "Choqok/Plugin" not found choqok(7751) Choqok::PluginManager::loadPluginInternal: Unable to find a plugin named ' "choqok_twitter" '! libpng warning: iCCP: known incorrect sRGB profile
Created attachment 90676 [details] Empty configuration preference
Created attachment 90677 [details] Cmake warning about LINK_INTERFACE_LIBRARIES and INTERFACE_LINK_LIBRARIES
Regards
I have tried installing from sources for 1.4 versions, it does not work either. In another hand, Choqok 1.4.5 from repositories works. So, I think theres is something fishy with my configuration. But I still cannot determine what...
If you are installing KDE components outside the prefixes that KDE searches, you need to add those paths to your environment variables. I suggest to either use distribution packages, or ask on a KDE developer list how to setup those environment variables.
I subscribe to choqok-devel mailing list right away. Thanks Christoph.
This is more like an installation issue than a Choqok issue. and the CMake warning is just a warning and as it said itself: "This warning is for project developers. Use -Wno-dev to suppress it." You don't need to mind it.
It is recommended to install it at system level with: $ cd choqok-src-root-dir [It's choqok-VERSION] $ mkdir build $ cd build $ cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` .. $ make $ sudo make install As mentioned in README