Short copy-pasteable "Modern" CMake snippets.
These snippets are not comprehensive and are not a replacement for documentation.
Use them to avoid needing to memorize them.
Name your project and set the minimum CMake version
cmake_minimum_required(VERSION 3.4)
project(MyProj)
Set default build type, e.g. Release. Turn on Debug with -DCMAKE_BUILD_TYPE=Debug
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
Prefer per-target includes to scope-based commands:
target_include_directories(my_app PUBLIC mylib/include)
This command adds mylib/include
to the my_app
include search paths.
When another dependent target uses target_link_libraries()
to link with a lib with INTERFACE
or PUBLIC
target_include_directories()
, the linking target will automatically have the library include directories added.
Thus you should prefer target_include_directories()
to the older command:
include_directories(my_app mylib/include)
include_directories()
works at directory scope. All targets in this CMakeList.txt
, as well as those in all subdirectories added after the point of its call, will have the path mylib/include
added to their include path.
target_include_directories()
,include_directories()
SO-1, SO-2
add_library(my_header_only_lib INTERFACE) # No sources provided
target_sources(my_header_only_lib INTERFACE my_header.hpp) # Adds header files to target, will appear in IDEs
target_include_directories(my_header_only_lib INTERFACE my_header.hpp) # Allow lib dependent target to auto add includes too
When another target uses target_link_libraries()
to link with my_header_only_lib
, the linking target will automatically have the library include directories added.
add_library()
,target_sources()
,target_include_directories()
, SO-2
Set the default C++ standard for all targets:
set(CMAKE_CXX_STANDARD 17) # C++17
Set the C++ standard for a specific target my_app
:
set_property(TARGET my_app PROPERTY CXX_STANDARD 17) # C++17
This is preferable to setting the compiler-specific commands such as -std=c++17
.
Turn on project folder support property and set each target to its named folder
set_property(GLOBAL PROPERTY USE_FOLDERS ON) # Turn on this feature
...
set_property(TARGET my_lib PROPERTY FOLDER "libs")
set_property(TARGET another_lib PROPERTY FOLDER "libs/3rdParty")
set_property(TARGET my_app PROPERTY FOLDER "utils")
Adds a CMake togglable variable that will also appear in cmake-gui, for conditional build settings.
If the variable is set via the command line or the GUI the default initial value will be ignored:
option(ENABLE_PYTHON_BINDINGS "Build Python bindings" OFF) # Adds option, sets default to OFF
if(ENABLE_PYTHON_BINDINGS)
add_subdirectory(external_libs/pybind11)
endif()
This will create a toggleable check box in cmake-gui
.
To toggle from the command line use cmake ... -DENABLE_PYTHON_BINDINGS=ON
.
Activate testing support for ctest via enable_testing
Test programs are normal executable created via add_executable.
For that cmake knows an executable is a test it has to be registered as such. This is done via the add_test command.
It is possible to add properties to a test, these are set via the set_tests_properties command.
WILL_FAIL
true tells cmake that a test is expected to failTIMEOUT
limits the test runtime to the number of seconds specified.
enable_testing()
add_executable(mytest testcode1.cpp testcode2.cpp)
add_test(NAME myapp_mytest COMMAND mytest)
set_tests_properties(myapp_mytest TIMEOUT 1)
If testing is enabled and at least one test has ben registered there is now a test
target available, which can be invoked via make test
in the build directory.
Alternative, running directly ctest
in the build directory is also a possibility.
If there are multiple test binaries in a project it is possible to execute them in parallel.
This works by the -j
(jobs) command line switch.
ctest -j8
in case of running ctest, make test ARGS=-j8
to pass the switch via make test to ctest.
Sometimes we cannot generate the data for the tests at run time and need to load it from some folder. We can do this by creating a private build preprocessor variable for our unit test app.
In our CMakeLists.txt
we add the path location in the repo (or any such similar info):
target_compile_definitions(unit_tests PRIVATE TEST_DATA_DIR=${PROJECT_SOURCE_DIR}/test_data)
and in our unit test source code we can use this flag as follows:
#ifndef TEST_DATA_DIR
#error "Must specify test data directory path in TEST_DATA_DIR."
#else
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
constexpr const char* testDataFolder = TOSTRING(TEST_DATA_DIR);
#undef TOSTRING
#undef STRINGIFY
#endif
The constexpr (global) variable testDataFolder
will hold the path to use at build time.
If you are using MSVC you can use a generator expression to add /PROFILE
to the link options for your target if RelWithDebInfo
is the target.
if (MSVC)
target_link_options(my_target PRIVATE $<$<CONFIG:RELWITHDEBINFO>:/PROFILE>)
endif()
Note: target_link_options
is from 3.13, you can use target_link_libraries
if you're on an old version.
HT: @TartanLlama