Does your CMake projects look similar to the example below? If yes - I'm positive you'll find this post helpful as it's is especially composed for you. This post will cover the core of what's considered modern CMake and will be part of a blog post series. Before we dive into the details of potential problems with the code above, one might wonder 'What is Modern CMake?'. It seems that the consensus of what's considered modern begins from version 3 and above when a lot of improvements were made for targets and properties. These concepts introduced a new paradigm which improved upon the build structure including project scoping and the handling of transitive dependencies. Version 3.0.0 was released four years ago (as of 2018), but somehow, this new powerful paradigm never really took off. Depressingly, the official documentation from KitWare is still providing tutorials using old methods and practices. The first time I heard about modern CMake was a couple of years ago, but I really started to embrace it after watching an excellent talk by Daniel Pfeifer last year. He opened my eyes to how good, modern and clean CMake looks like; perhaps you'll appreciate it as much as I did. Some of these concepts and guidelines, including an example project with Qt, will be presented in this series. As aforementioned, the main concepts in modern CMake are targets and properties. But what are they? A target can be thought of as a class with encapsulation. The target is for example an executable, a shared library or a header-only library. In a similar analogy, properties can be thought of as member variables and methods in a specific target. These can either be used internally when the project is built, or exposed to, and inherited by, other projects when they link to the target. Examples of properties are the target's source code, the required compiler options as well as the libraries that the target needs to link to. In modern CMake a project will consist of one or more targets which are individually defined by properties. Whether properties are used internally, externally or both, i.e. which scope they belong to, is an important concept in modern CMake and will be covered next. Internal properties belong to the PRIVATE scope whereas external properties should be defined in the INTERFACE scope. There is also a third scope: PUBLIC, which is used when properties are needed internally as well as externally. PRIVATE properties define the build requirements whereas the INTERFACE define the usage requirements. To define properties in an INTERFACE scope, the CMake command is either prepended with INTERFACE or passed in as an argument. Similar rules apply to the PRIVATE scope. This can be best understood with the help of a few examples: Example 1. The target, Example 2. The target, Example 3. The target, With these concepts in mind, let's go through some of the lines in the code above and explore them more in details. Let's start with the first line. The Imagine that you're working on a big project with a hierarchy of many targets and the top level project has added the Next, let's tackle the second line. The I'm sure you already know the potential problem with the third line by now: setting the For a similar reason the global command The information above has covered global commands and targets, so what's wrong with The arguable problem with The reason CMake needs to be re-run is because it is not a build system: it's a build system generator. The build system doesn't need to know anything about CMake - it's just generated by it. In reality, some build systems are aware of the new files and automatically re-run CMake. Although it's somewhat conceptually broken, I prefer to use If the CONFIGURE_DEPENDS flag is specified, CMake will add logic to the main build system check target to rerun the flagged GLOB commands at build time. If any of the outputs change, CMake will regenerate the build system. I've only scratched the surface of modern CMake as this post only covers the basic. If you're intrested in learning more, an excellent resource is the following GitHub project. The next part in the series will comprise of a CMake example using Qt and how a library can be exported using modern methodologies. Also, my best advice is to keep CMake code clean - treat it as it would be production code. It will save time in the long run!add_definitions("-Wall")
include_directories(${PROJECT_SOURCE_DIR}/src/)
set(CMAKE_CXX_FLAGS -std=c++11)
file(GLOB SRC_FILES ${PROJECT_SOURCE_DIR}/src/*.cpp)
Target and Properties
Property scope
Foo
, is a shared library which internally uses some C++11 features and therefore requires to be built by a C++11 compatible compiler. Although the internal library is using C++11 features the API itself doesn't expose any. Hence, the compiler feature cxx_std_11
should be declared in the PRIVATE scope:target_compile_features(Foo PRIVATE cxx_std_11)
# Same as above. All features defined in compile_features() are private.
# Note that private_ should not be prepended to the command.
compile_features(cxx_std_11)
Foo
, is a shared library and exposes variadic template functions. These are used internally as well as externally, therefore the compiler feature cxx_variadic_templates
needs to be part of the PUBLIC scope:target_compile_features(Foo PUBLIC cxx_variadic_templates)
Foo
, is a header-only library and exposes variadic template functions. Similarly to example 2, cxx_variadic_templates
needs to be exposed externally. However, since the library doesn't need to be built - again it's a header-only library - it's sufficient to only expose it externally using INTERFACE:target_compile_features(Foo INTERFACE cxx_variadic_templates)
# Same as above. All features defined in interface_compile_features() are exposed externally.
# Note that for external exposure, we prepend with interface_
interface_compile_features(cxx_variadic_templates)
Back to the code from the past
add_definitions("-Wall")
include_directories(${PROJECT_SOURCE_DIR}/src/)
set(CMAKE_CXX_FLAGS -std=c++11)
-Wall
compiler option is used to enable all GCC compiler's warning messages. However, it will not only apply to the current sources but also to all directories and sources below. Perhaps this is the intention, but it's likely to lead to some issues along the development road.-Wall
flag. In your specific subproject you're only interested in certain warnings. How would you solve this? You could potentially add remove_definitions("-Wall")
in your CMake file or perhaps temporary remove the "-Wall"
flag from the top level. But what if you accidentally commit the change? Also someone who's new to CMake might struggle more when resources are leaked from one project to another. A modern approach is to apply the property on the target itself by declaring it within the PRIVATE scope:target_compile_options(Foo PRIVATE -Wall)
include_directories()
-command will add directories to the search paths, which are used for some compilers when including files. Similarly to the previous command, this command is leaked to all targets in the same scope. In case the target is a shared library, only the public API directories needs to be exposed to other targets. For this instance it would be better to define both the public and private scope separately using target_include_directories()
:target_include_directories(Foo
PUBLIC
public
PRIVATE
src
)
CMAKE_CXX_FLAGS
will automatically apply to all other targets in the same scope. The target alternative command was already covered in example 1 above.target_link_libraries()
solves transitive dependencieslink_libraries()
should also be avoided when linking to libraries. The target alternative command is target_link_libraries()
. Not only does it handle scoping but it will also solve transitive dependencies. For example, when you need to link to a target you'll also have to link to its dependencies. And the dependencies might have dependencies. These transitive dependencies will be solved by the target command as it automatically traverses the dependency tree.Warning about
file(GLOB ...)
file(GLOB ...)
?file(GLOB SRC_FILES ${PROJECT_SOURCE_DIR}/src/*.cpp)
file(GLOB ...)
is that some build systems will not automatically include newly created files without re-running CMake. This could potentially lead to confusion and build issues for other developers when a new file has been committed to the source control. file(GLOB ...)
instead of manually adding every new file to CMake. Policies such as "Always manually re-run CMake after a checkout or when adding new files" can be used in order to avoid the potential problems. Also note that in CMake 3.12 a new flag CONFIGURE_DEPENDS will be added that improves the usage:
Summary
include_directories()
and link_libraries()
.target_link_libraries()
automatically solves transitive dependencies,file(GLOB ...)
and if you do use it - learn and share about the problems to the team.