From 8f0db1140eecfd8ec5f5cd5c6563c40b340937c6 Mon Sep 17 00:00:00 2001 From: Alexey Gavrilov Date: Wed, 24 Jun 2026 09:00:52 +0700 Subject: Add feature cmake module Feature is abstraction around cmake build target used to contains descriptive information in target properties as name, dependencies, tags and etc.. Feature creation divided by three processes: start creation process, fields filling and stop creation process. Start creation process means passed target is handle now, and stop process is finish to handle a current feature. Using this way helps to construct correct features hierarchy and simplify kernel configuration process. This will use in standalone automating kernel configuration tools: 1. Cmake generate a features file with information about them all. 2. Tool read this file and display features tree. 3. User start to configuring his kernel. Signed-off-by: Alexey Gavrilov --- cmake/module/metadata.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmake/module/metadata.cmake') diff --git a/cmake/module/metadata.cmake b/cmake/module/metadata.cmake index e126495..00f7ad4 100644 --- a/cmake/module/metadata.cmake +++ b/cmake/module/metadata.cmake @@ -17,10 +17,10 @@ ]] # FIX: get elements from ObjectiveProject_ROOT/arch directory -set(OBJECTIVE_SUPPORTED_PROCESSORS x86;arm/sunxi CACHE STRING "Supported +set(OBJECTIVE_SUPPORTED_PROCESSORS x86;arm CACHE STRING "Supported processors by Objective kernel") # FIX: get apps from docs set(OBJECTIVE_SUPPORTED_ISO_CREATION_APPS grub-mkrescue CACHE STRING "Supported -apps to create ISO image") +apps to create an ISO image") -- cgit v1.2.3