Did CMake developers know about imake from the X WIndow System?

imake and CMake solve some of the same problems, but from a completely different approach.

I was just curious if the CMake developers were aware of imake and what they thought of it at the time they decided to create CMake.

For what it was (a tool intended to portably build the X Window System server and client libraries), it was pretty clever and minimal, only requiring a C compiler and the C preprocessor from the host environment.

imake often got a bad rap, I think, because there wasn’t a really good user guide on how to properly support imake when you shipped a server. (People often left out appropriately customized templates for their particular binary distribution.) So it would work well in the context of building the MIT distribution, but would fall down when building client software on a commercial distribution.

Blast from the past! Back in the day before starting CMake I was a big imake user, so yes imake had an influence on CMake.

1 Like

That’s what I figured. If you have any specific memories of how imake influenced your thinking in creating CMake, I’d love to hear the stories :)

I guess the idea of a makefile generation system was the biggest thing. Started using it because it was used by the InterViews GUI toolkit. We later gave it up for a pure gmake build system Target Junior Makefiles. Then with https://itk.org/ CMake was created as a makefile/VS file generator written in C++.

1 Like

Nice, thanks for the info!