You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
476 B
24 lines
476 B
# SPDX-License-Identifier: Apache-2.0 |
|
# |
|
# Copyright (c) 2021, Nordic Semiconductor ASA |
|
|
|
# This CMake module will load all Zephyr CMake modules required for a |
|
# documentation build. |
|
# |
|
# The following CMake modules will be loaded: |
|
# - extensions |
|
# - python |
|
# - west |
|
# - root |
|
# - zephyr_module |
|
# |
|
# Outcome: |
|
# The Zephyr package required for documentation build setup. |
|
|
|
include_guard(GLOBAL) |
|
|
|
include(extensions) |
|
include(python) |
|
include(west) |
|
include(root) |
|
include(zephyr_module)
|
|
|