Skip to content

Bug of the week

Thursday, 3 August 2006  |  zander

In KWord the main library is called kwordprivate. So doing a recompile after changing something inside of kword cmake has this nice gem:

make kwordprivate/fast install/fast

Works nice in general, except for this fantastic dependency problem:

touch KWFrameRunaroundProperties.ui
make kwordprivate/fast
Linking CXX shared library ../../lib/libkwordprivate.so
[ 11%] Generating ui_KWFrameRunaroundProperties.h

Doing the uic after the linking does not really have the effect I wanted :P This made me laugh! Really cool to see that we are apparently doing things that the buildsystem guys don't see in their test runs.