Build automation: Is it usual to use QMake for non-Qt projects?

Posted by Raphael on Programmers See other posts from Programmers or by Raphael
Published on 2011-08-06T22:54:57Z Indexed on 2012/09/09 15:49 UTC
Read the original article Hit count: 176

Filed under:
|

So, I'm planning to write a C++ library and I want it to be cross-platform, and as this library won't deal with UI and I want it to have as little dependencies as possible, I won't be using Qt (actually Qt won't really help me to achieve what I want, all I plan on using is STL and Boost). Now when it comes to build a cross-platform project, I really like QMake as it's extremely easy to use and I have experience with it. I also heard good things about CMake, though I really doubt it's as easy to use as QMake.

Anyway, here is my question: Should I stick with build automation tool that I know or is QMake just out of context for a non-Qt project? Should I take this as an opportunity to learn CMake? Or is there a better alternative to these two?

© Programmers or respective owner

Related posts about c++

Related posts about cmake