Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Cmake, there are several ways to specify the sourcefiles for a target. One is to use globbing, for example:

FILE (GLOB dir/*)

Another one is to specify each file individually, and I guess there are even more ways to do this.

Which way is the best? Best as in, has more advantages than disadvantages.

Globbing seems easy, but I heard it has some downsides. I can't remember which.

share|improve this question

1 Answer

up vote 36 down vote accepted

Full disclosure: I prefer the globbing approach.

The advantages to globbing are:

  • It's easy to add new files as they are only listed in one place: on disk. Not globbing creates duplication.

  • Your CMakeLists.txt file will be shorter. This is a big plus if you have lots of files. Not globbing causes you to lose the CMake logic amongst huge lists of files.

The advantages of using hardcoded file lists are:

  • CMake will track the dependencies of a new file on disk correctly - if we use glob then files not globbed first time round when you ran CMake will not get picked up

  • You ensure that only files you want are added. Globbing may pick up stray files that you do not want.

In order to work around the first issue, you can simply "touch" the CMakeLists.txt that does the glob, either by using the touch command or by writing the file with no changes. This will force cmake to re-run and pick up the new file.

To fix the second problem you can organize your code carefully into directories, which is what you probably do anyway. In the worst case, you can use the list(REMOVE_ITEM) command to clean up the globbed list of files:

file(GLOB to_remove file_to_remove.cpp)
list(REMOVE_ITEM list ${to_remove})

The only real situation where this can bite you is if you are using something like git-bisect to try older versions of your code in the same build directory. In that case, you may have to clean and compile more than necessary to ensure you get the right files in the list. This is such a corner case, and one where you already are on your toes, that it isn't really an issue.

share|improve this answer
8  
+1 for the warning about using git-bisect with globbing! – André Caron Dec 13 '11 at 19:26
1  
Also bad with globbing: git's difftool files are stored as $basename.$ext.$type.$pid.$ext which can cause fun errors when trying to compile after a single merge resolution. – mathstuf Mar 4 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.