MAR
2
2019

Subsurface - an "outsiders" take on QML and Kirigami

Dirk Hohndel talked about his experiences with QML and Kirigami at LCA 2019:
Producing an application for both desktop and mobile

I think that's quite useful for us as feedback from somebody who is not directly part of the KDE community.

JUL
10
2018

A new book on CMake

Hi,

there is a new book on CMake (there are not many):
Professional CMake - A practical guide.

I haven't read it yet, so I cannot say more about it, but I guess it should be useful.

JAN
19
2018

Fun (?) with symbol visibility...

In the last days I had to deal with loading plugins via dlopen.
I learned so far already a lot about symbols on Linux.

MAR
22
2017

Looking for a job ?

Are you looking for a C++/Qt/Linux developer job in Germany ?
Then maybe this is something for you: Sharp Reflections

I'm looking forward to hear from you. :-)
Alex

FEB
5
2013

[OT] How to get Webex working on SUSE Linux 12.2 64bit

Sorry, for posting this on blogs.kde.org, but I think it might help a few people out there having the same problem.

JAN
20
2012

Looking for a student job in an Open Source project in Germany ?

You are a student, you would like to contribute to an Open Source project, and get paid for it ?

Then I may have something for you.
At my job at Fraunhofer in Kaiserslautern we are using the CDash testing server for testing the software we develop - various different High Performance applications for Linux clusters.

DEC
2
2011

Regexp library benchmarks...

Since I don't have an account to reply there http://blog.rburchell.com/2011/12/why-i-avoid-qregexp-in-qt-4-and-so.html, I'll do it here.

Recently somebody benchmarked regexp libraries as potential candidates for use in CMake.
Short version: PCRE was not exactly much faster than what is in CMake, re2 and TRE were magnitudes faster: [cmake-developers] Re: slow regex implementation in RegularExpression.

NOV
11
2011

Cool new stuff in CMake 2.8.6 (3): a standard way to disable optional packages

Welcome to the third part of this small series about new stuff in CMake 2.8.6, following the first and the second part.
Most non-trivial projects, whether built with CMake or something else, depend on multiple other packages, which can be either optional or required.
In CMake-based projects all these packages are searched using the find_package() command.

NOV
9
2011

Cool new stuff in CMake 2.8.6 (2): pkg-config compatible mode added for use e.g. with autotools

After introducing the automoc feature in my last blog, here comes the next part of this series. More will follow.

The new --find-package mode of CMake

Typically, in projects which are built using autotools or handwritten Makefiles, the tool pkg-config is used to find whether and where some library, used by the software, is installed on the current system, and prints the respective command line options for the compiler to stdout.

NOV
1
2011

Cool new stuff in CMake 2.8.6: automoc

Starting with version 2.8.6 CMake supports what is known as automoc, i.e. automatic handling of moc when using Qt4.

As you know, when adding signals and slots to a class using Qt, this source code (typically the header) has to be processed by the moc preprocessor. This invocation of moc during the build is what we are talking about.

When using plain CMake, you had to use the macro

   qt4_wrapp_cpp(srcsVar ${filesToBeMocced}).

Pages