mirror of https://github.com/wolfSSL/wolfBoot.git
58 lines
2.1 KiB
CMake
58 lines
2.1 KiB
CMake
# functions.cmake
|
|
#
|
|
# Copyright (C) 2022 wolfSSL Inc.
|
|
#
|
|
# This file is part of wolfBoot.
|
|
#
|
|
# wolfBoot is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# wolfBoot is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
|
|
function(override_cache VAR VAL)
|
|
get_property(VAR_STRINGS CACHE ${VAR} PROPERTY STRINGS)
|
|
LIST(FIND VAR_STRINGS ${VAL} CK)
|
|
if(-1 EQUAL ${CK})
|
|
message(SEND_ERROR
|
|
"\"${VAL}\" is not valid override value for \"${VAR}\"."
|
|
" Please select value from \"${VAR_STRINGS}\"\n")
|
|
endif()
|
|
set_property(CACHE ${VAR} PROPERTY VALUE ${VAL})
|
|
endfunction()
|
|
|
|
function(add_option NAME HELP_STRING DEFAULT VALUES)
|
|
# Set the default value for the option.
|
|
set(${NAME} ${DEFAULT} CACHE STRING ${HELP_STRING})
|
|
# Set the list of allowed values for the option.
|
|
set_property(CACHE ${NAME} PROPERTY STRINGS ${VALUES})
|
|
|
|
if(DEFINED ${NAME})
|
|
list(FIND VALUES ${${NAME}} IDX)
|
|
#
|
|
# If the given value isn't in the list of allowed values for the option,
|
|
# reduce it to yes/no according to CMake's "if" logic:
|
|
# https://cmake.org/cmake/help/latest/command/if.html#basic-expressions
|
|
#
|
|
# This has no functional impact; it just makes the settings in
|
|
# CMakeCache.txt and cmake-gui easier to read.
|
|
#
|
|
if (${IDX} EQUAL -1)
|
|
if(${${NAME}})
|
|
override_cache(${NAME} "yes")
|
|
else()
|
|
override_cache(${NAME} "no")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endfunction()
|
|
|