commit | 7e4763949e6a53f716aeea131ff61a19223207ef | [log] [tgz] |
---|---|---|
author | Axel Heider <axelheider@gmx.de> | Mon Jul 26 16:25:09 2021 +0200 |
committer | Damon Lee <coding@nomadeel.com> | Tue Sep 14 12:12:26 2021 +1000 |
tree | 33a68f2912fa66ef06459f5e3609bbb38a0ba863 | |
parent | 8575f1a792132fb3fc5f90e8b00a6ddcd04f8331 [diff] |
templates: add architecture parameter Adapt to the recent CAmkES changes, the architecture is passed now to parse the DTB interrupts properly. Signed-off-by: Axel Heider <axelheider@gmx.de>
This repository contains a collection of reusable CAmkES components and interfaces.
To include components and interfaces from this repository ensure that global-components.cmake
is included in your project. An example is below.
find_file(GLOBAL_COMPONENTS_PATH global-components.cmake PATHS ${CMAKE_SOURCE_DIR}/projects/global-components/ CMAKE_FIND_ROOT_PATH_BOTH) mark_as_advanced(FORCE GLOBAL_COMPONENTS_PATH) if("${GLOBAL_COMPONENTS_PATH}" STREQUAL "GLOBAL_COMPONENTS_PATH-NOTFOUND") message(FATAL_ERROR "Failed to find global-components.cmake. Consider cmake -DGLOBAL_COMPONENTS_PATH=/path/to/global-components.cmake") endif() include(${GLOBAL_COMPONENTS_PATH})