hugopl/devblog

05 Dec 2009

Reinventing the wheel to save the universe!

I admit myself, I have a bit of the “Not written by me” syndrome, but I guess that this time this is not a side effect of this developer disease, it’s just because every build tool in this planet sux in a way or another, so I decided to write my own build tool, yes… the build tool of my dreams!

Before start to talk about it, I like to answer why not X? why not Y? Ok, let’s do it one by one.

Why not Autotools?

If you really like Autotools, sorry, this post isn’t for you. Bye!

Why not qMake?

qMake is useful only for Qt-based projects, and IMHO, for the simple ones. Ok, Qt is a huge project and uses qMake, but did you ever found someone spreading good words about qMake? In other words, I never use qMake for my Qt projects, I use cmake instead.

Why not SCons?

SCons is somehow a good build tool, last time I used it was two years ago, I like the SCons bootstrap methodology but I dislike the python dependence, summarizing, IMHO CMake is better.

Why not CMake?

CMake is the best build tool nowadays, simple use cases remains simple and complex use cases are possible. I use it for all my projects, so I know that it’s not perfect yet.

Why not X?

I don’t know X, so X is too new or probably not so good :-), but if X is really good, just assume that what I’m doing is a side effect of the “Not written by me” syndrome.

Why not Meique?

Yes! Meique is perfect! Is the build tool of my dreams! the holy grail!! but it does not exists yet, the current source code still not useful, I’ll push something to gitorious when it be able to compile the first Hello World.

Ok, so let’s talk about my vapor ware, first the desired features.

Meique isn’t a meta-buildsystem like CMake, i.e. it doesn’t generate files for native building tools like Makefiles, Visual Studio projects, etc. Meique itself call the compiler, take care of what should and what shouldn’t be compiled, etc. This adds a bit more complexity to the project, but open the road for useful features like:

The Meique Lua API is almost done, I just need to think easier ways to write the equivalent of CMake FindPackages, a simple Hello World could be described as:

target = Executable:new("hello")
target:addFiles("hello.cpp")

The stupid example above shows nothing, because build tools intent to be used mainly by medium/big and sometime complex projects, so I’m trying to create a good API based on my experience with CMake, qMake and SCons and why not, my personal hate against Autotools.

P.S.: If you search about Meique, probably you will find an old website at luaforge, this was my first attempt to create a build tool, the source code reflects my understanding of building tools 5 years ago, so forget about it.

comments powered by Disqus