1# SPDX-License-Identifier: Apache-2.0
2#
3# Copyright (c) 2021, Nordic Semiconductor ASA
4
5# This CMake module will load all Zephyr CMake modules required for a
6# documentation build.
7#
8# The following CMake modules will be loaded:
9# - extensions
10# - python
11# - west
12# - root
13# - zephyr_module
14#
15# Outcome:
16# The Zephyr package required for documentation build setup.
17
18include_guard(GLOBAL)
19
20include(extensions)
21include(python)
22include(west)
23include(root)
24include(zephyr_module)
25