e0b4ec2e21
Reject NUL/control bytes and Windows-hostile names in entry names, relax the over-broad ".." substring ban to component-only, close the trailing-garbage gap on empty manifests, and relocate the package CMake subdirectory to its ladder home.
20 lines
689 B
CMake
20 lines
689 B
CMake
# The pure substrate — see root CLAUDE.md's architecture section for the core/ purity invariant.
|
|
#
|
|
# Declaration order below runs base-first so the file reads as a dependency ladder; CMake
|
|
# itself does not require it (link names resolve at generate time), and a few edges do run
|
|
# backwards — core/wire's instrument_drop reuses the instrument's own state codec.
|
|
|
|
add_subdirectory(json)
|
|
add_subdirectory(util)
|
|
add_subdirectory(wire)
|
|
add_subdirectory(audio)
|
|
add_subdirectory(model)
|
|
add_subdirectory(capture)
|
|
add_subdirectory(tracking)
|
|
add_subdirectory(reclaim)
|
|
add_subdirectory(version)
|
|
add_subdirectory(package)
|
|
add_subdirectory(view)
|
|
add_subdirectory(ui)
|
|
add_subdirectory(instrument)
|