diff options
| author | info@mode42.com <info@mode42.com> | 2026-08-07 18:23:28 +0000 |
|---|---|---|
| committer | info@mode42.com <info@mode42.com> | 2026-08-07 18:23:28 +0000 |
| commit | fa05a5f8238e9e1417235711656e5062ccc843a7 (patch) | |
| tree | 46fbbd18de54492b59307c16efcc7f3152723238 /cmake/MAX25Ax25.cmake | |
Initial push
Diffstat (limited to 'cmake/MAX25Ax25.cmake')
| -rw-r--r-- | cmake/MAX25Ax25.cmake | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cmake/MAX25Ax25.cmake b/cmake/MAX25Ax25.cmake new file mode 100644 index 0000000..53193f6 --- /dev/null +++ b/cmake/MAX25Ax25.cmake @@ -0,0 +1,19 @@ +# MAX25Ax25.cmake — native AX.25 codec only (no upstream bundle). +# +# libax25 / ax25-tools / ax25-apps tarballs under third_party/ax25/ are study +# reference material. max25d ships stacks/daemon/ax25_codec.py + kiss_bridge.py. +# Optional host tools (listen, call, kissattach): install distro ax25-apps / +# ax25-tools or run scripts/build-ax25-deps.sh manually (deprecated for MAX25). + +option(MAX25_BUNDLE_AX25 + "DEPRECATED: build libax25/ax25-tools/ax25-apps from third_party/ax25 tarballs" + OFF) + +if(MAX25_BUNDLE_AX25) + message(WARNING + "MAX25_BUNDLE_AX25=ON is deprecated. " + "Use distro ax25-apps/ax25-tools or scripts/build-ax25-deps.sh manually. " + "max25d uses native ax25_codec.py — no libax25 link required.") +endif() + +message(STATUS "AX.25: native ax25_codec.py (third_party/ax25 study reference only)") |
