mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
Updating the build to the new version of bonnibel. This also includes some updates to make sure things keep working with LLVM 11.
18 lines
242 B
TOML
18 lines
242 B
TOML
name = "boot"
|
|
kind = "exe"
|
|
output = "boot.efi"
|
|
targets = ["boot"]
|
|
deps = ["cpu"]
|
|
sources = [
|
|
"main.cpp",
|
|
"console.cpp",
|
|
"error.cpp",
|
|
"fs.cpp",
|
|
"hardware.cpp",
|
|
"loader.cpp",
|
|
"memory.cpp",
|
|
"paging.cpp",
|
|
"status.cpp",
|
|
"support.cpp",
|
|
]
|