Moves kernel to top-level (#1012)

This commit is contained in:
Putta Khunchalee 2024-10-04 00:43:26 +07:00 committed by GitHub
parent 4209655fbb
commit 40dd689596
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
41 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ add_custom_target(libgui
add_custom_target(kernel
COMMAND cargo ${KERNEL_TOOLCHAIN} build $<IF:$<CONFIG:Debug>,--profile=dev,--release> --target ${KERNEL_TARGET} ${KERNEL_OPTS}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/obkrnl
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/kernel
BYPRODUCTS ${KERNEL})
add_dependencies(libgui kernel)

View File

@ -2,13 +2,13 @@
resolver = "2"
members = [
"gui",
"kernel",
"src/fs",
"src/gmtx",
"src/kernel",
"src/llt",
"src/macros",
"src/obconf",
"src/obkrnl",
"src/param",
"src/pfs",
"src/pkg",

View File

@ -7,7 +7,7 @@ edition = "2021"
anstyle = { version = "1.0.8", default-features = false }
bitfield-struct = "0.8.0"
hashbrown = "0.14.5"
macros = { path = "../macros" }
obconf = { path = "../obconf", features = ["virt"] }
macros = { path = "../src/macros" }
obconf = { path = "../src/obconf", features = ["virt"] }
spin = { version = "0.9.8", features = ["spin_mutex"], default-features = false }
talc = { version = "4.4.1", default-features = false }