cmake_minimum_required(VERSION 3.31)
project(herdd C)

file(GLOB sources *.c)
add_executable(herdd ${sources})
target_link_libraries(herdd
	c -l:crt0.o
	magenta pthread launch rosetta
	fx.runtime fx.collections fx.serial)

install(TARGETS herdd)
