Address code review feedback

- Add comment about GLOB usage in kernel/CMakeLists.txt
- Improve clarity of optional screenshot capture in qemu-test.yml
- All code review comments addressed
- Security scan passed with 0 alerts

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-28 20:42:52 +00:00
parent 1d0537c57a
commit 08fc016b8b
2 changed files with 4 additions and 1 deletions

View File

@@ -6,6 +6,8 @@ cmake_minimum_required(VERSION 3.16)
project(MetalOS_Kernel C ASM)
# Source files
# Note: Using GLOB for simplicity. For production, consider listing files explicitly.
# If new files aren't detected, re-run cmake configuration.
file(GLOB KERNEL_C_SOURCES "src/*.c")
file(GLOB KERNEL_ASM_SOURCES "src/*.asm")