Lines Matching full:manifest
11 ############################### Manifest lists declaration #####################
52 # Get all the manifest files from manifest lists
55 message(FATAL_ERROR "Manifest list ${MANIFEST_LIST} doesn't exist")
59 # Get the path of the manifest list
62 # Get all the "manifest"
63 parse_field_from_yaml(${MANIFEST_LIST} manifest MANIFESTS)
65 foreach(MANIFEST ${MANIFESTS})
67 if (NOT IS_ABSOLUTE ${MANIFEST})
68 # First try relative to the manifest
69 if (EXISTS "${MANIFEST_LIST_PATH}/${MANIFEST}")
70 get_filename_component(MANIFEST "${MANIFEST_LIST_PATH}/${MANIFEST}" ABSOLUTE)
72 elseif (EXISTS "${CMAKE_SOURCE_DIR}/${MANIFEST}")
73 get_filename_component(MANIFEST "${CMAKE_SOURCE_DIR}/${MANIFEST}" ABSOLUTE)
76 list(APPEND MANIFEST_FILES ${MANIFEST})
92 ############################### Generate Manifest config header ################
118 # The following build configurations are required to pass to manifest tool via the config header
121 # - "conditional" attributes for every Secure Partition in manifest lists
186 message(FATAL_ERROR "Manifest tool failed to generate files!")