2026-07-19 13:34:32 +01:00
|
|
|
cmake_minimum_required(VERSION 3.31)
|
|
|
|
|
project(herdd C)
|
|
|
|
|
|
2026-03-23 18:15:38 +00:00
|
|
|
file(GLOB sources *.c)
|
|
|
|
|
add_executable(herdd ${sources})
|
2026-04-01 19:12:55 +01:00
|
|
|
target_link_libraries(herdd
|
2026-07-19 13:34:32 +01:00
|
|
|
c -l:crt0.o
|
|
|
|
|
magenta pthread launch rosetta
|
2026-05-30 10:19:33 +01:00
|
|
|
fx.runtime fx.collections fx.serial)
|
2026-03-23 18:15:38 +00:00
|
|
|
|
2026-07-19 13:34:32 +01:00
|
|
|
install(TARGETS herdd)
|