There is no reason for the top-level C++ Kconfig symbol to be called `CPLUSPLUS` when the convention used throughout the Zephyr codebase is to use "cpp" to refer to C++ and the rest of the C++-related Kconfig symbols are prefixed with `CPP_`. This commit renames the Kconfig `CPLUSPLUS` symbol to `CPP` in order to better align with the de-facto standard naming convention used throughout the Zephyr codebase, and deprecates the old `CPLUSPLUS` symbol. Signed-off-by: Stephanos Ioannidis <stephanos.ioannidis@nordicsemi.no>
16 lines
320 B
Plaintext
16 lines
320 B
Plaintext
# Copyright (c) 2022 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "Deprecated"
|
|
|
|
config CPLUSPLUS
|
|
bool "[DEPRECATED] C++ support for the application"
|
|
select CPP
|
|
select DEPRECATED
|
|
help
|
|
This option enables the use of applications built with C++.
|
|
|
|
[DEPRECATED] Select CPP instead.
|
|
|
|
endmenu
|