mirror of
1
0
Fork 0
modern-cmake/chapters/features/modules.md

101 lines
3.8 KiB
Markdown
Raw Permalink Normal View History

2018-04-05 14:54:25 +02:00
# Useful Modules
2020-01-30 17:29:41 +01:00
There are a ton of useful modules in CMake's «cmake:modules» collection; but some of them are more useful than others. Here are a few highlights.
2018-04-05 14:54:25 +02:00
2018-04-06 11:29:56 +02:00
## «module:CMakeDependentOption»
2018-04-05 14:54:25 +02:00
This adds a command `cmake_dependent_option` that sets an option based on another set of variables being true. It looks like this:
```cmake
include(CMakeDependentOption)
cmake_dependent_option(BUILD_TESTS "Build your tests" ON "VAL1;VAL2" OFF)
```
which is just a shortcut for this:
```cmake
if(VAL1 AND VAL2)
set(BUILD_TESTS_DEFAULT ON)
else()
set(BUILD_TESTS_DEFAULT OFF)
endif()
option(BUILD_TESTS "Build your tests" ${BUILD_TESTS_DEFAULT})
if(NOT BUILD_TESTS_DEFAULT)
mark_as_advanced(BUILD_TESTS)
endif()
```
2018-12-05 19:21:01 +01:00
Note that `BUILD_TESTING` is a better way to check for testing being enabled if you use `include(CTest)`, since it is defined for you. This is just an example of `CMakeDependentOption`.
2018-04-06 11:29:56 +02:00
## «module:CMakePrintHelpers»
2018-04-05 23:25:03 +02:00
This module has a couple of handy output functions. `cmake_print_properties` lets you easily print properties.
And `cmake_print_variables` will print the names and values of any variables you give it.
2018-04-06 11:29:56 +02:00
## «module:CheckCXXCompilerFlag»
2018-04-05 14:54:25 +02:00
This checks to see if a flag is supported. For example:
```cmake
include(CheckCXXCompilerFlag)
2020-01-30 17:32:26 +01:00
check_cxx_compiler_flag(-someflag OUTPUT_VARIABLE)
2018-04-05 14:54:25 +02:00
```
Note that `OUTPUT_VARIABLE` will also appear in the configuration printout, so choose a good name.
This is just one of many similar modules, such as `CheckIncludeFileCXX`, `CheckStructHasMember`, `TestBigEndian`, and `CheckTypeSize` that allow you
to check for information about the system (and you can communicate that to your source code).
2018-04-06 11:29:56 +02:00
## «command:`try_compile`»/«command:`try_run`»
2018-04-05 14:54:25 +02:00
2020-01-30 17:32:26 +01:00
This is not exactly a module, but is crucial to many of the modules listed above. You can attempt to compile (and possibly run) a bit of code at configure time. This can allow you to get information about the capabilities of your system. The basic syntax is:
2018-04-05 14:54:25 +02:00
```cmake
try_compile(
RESULT_VAR
bindir
SOURCES
source.cpp
2020-08-04 00:16:52 +02:00
)
2018-04-05 14:54:25 +02:00
```
There are lots of options you can add, like `COMPILE_DEFINITIONS`. In CMake 3.8+, this will honor the CMake C/C++/CUDA standard settings. If you use `try_run` instead, it will run the resulting program and give you the output in `RUN_OUTPUT_VARIABLE`.
2018-04-06 11:29:56 +02:00
## «module:FeatureSummary»
2018-04-05 14:54:25 +02:00
2022-02-17 16:58:18 +01:00
This is a fairly useful but rather odd module. It allows you to print out a list of packages what were searched for, as well as any options you explicitly mark. It's partially but not completely tied into «command:`find_package`». You first include the module, as always:
2018-04-05 14:54:25 +02:00
2018-04-06 11:29:56 +02:00
```cmake
include(FeatureSummary)
```
Then, for any find packages you have run or will run, you can extend the default information:
```cmake
set_package_properties(OpenMP PROPERTIES
URL "http://www.openmp.org"
DESCRIPTION "Parallel compiler directives"
PURPOSE "This is what it does in my package")
```
You can also set the `TYPE` of a package to `RUNTIME`, `OPTIONAL`, `RECOMMENDED`, or `REQUIRED`; you can't, however, lower the type of a package; if you have already added a `REQUIRED` package through «command:`find_package`» based on an option, you'll see it listed as `REQUIRED`.
2018-04-12 10:28:14 +02:00
And, you can mark any options as part of the feature summary. If you choose the same name as a package, the two interact with each other.
2018-04-06 11:29:56 +02:00
```cmake
2018-04-12 10:28:14 +02:00
add_feature_info(WITH_OPENMP OpenMP_CXX_FOUND "OpenMP (Thread safe FCNs only)")
2018-04-06 11:29:56 +02:00
```
Then, you can print out the summary of features, either to the screen or a log file:
```cmake
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
feature_summary(WHAT ENABLED_FEATURES DISABLED_FEATURES PACKAGES_FOUND)
feature_summary(FILENAME ${CMAKE_CURRENT_BINARY_DIR}/features.log WHAT ALL)
endif()
```
You can build any collection of `WHAT` items that you like, or just use `ALL`.