Files
dcfg/examples/build_system.dcfg
Slendi 6c42ba0fa0
Some checks failed
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=OFF (push) Has been cancelled
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=ON (push) Has been cancelled
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=ON (push) Has been cancelled
CMake / ubuntu-latest - shared=OFF, pthread=ON, posix=ON (push) Has been cancelled
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=OFF (push) Has been cancelled
CMake / ubuntu-latest - shared=ON, pthread=ON, posix=ON (push) Has been cancelled
samples -> examples
Signed-off-by: Slendi <slendi@socopon.com>
2025-07-26 01:11:32 +03:00

22 lines
294 B
Plaintext

fn lib = {
targets = [
{
name = 'kernel'
source = 'src/kernel'
output = 'bin/kernel.elf'
options = {
optimization = 'O2'
debug = false
}
}
{
name = 'initrd'
source = 'src/initrd'
output = 'bin/initrd.img'
}
]
parallel_jobs = 8
cache.enable = true
}