Files
CLIProxyAPI/examples/plugin/protocol-format/c/CMakeLists.txt
Luis Pater 0ed85bb88b feat(pluginhost): refactor and enhance plugin system with new execution and thinking capabilities
- Removed `examples/plugin/main.go` and `internal/pluginhost/loader_plugin.go` after migrating to a more modular system.
- Introduced `streamBridge` in `internal/pluginhost/stream_bridge.go` for efficient stream handling and communication.
- Added examples of `thinking` plugins written in both Rust and Go under `examples/plugin/thinking`.
- Enhanced test coverage for plugin host system changes, including stream chunk translation and thinking logic.
- Improved API compatibility and ensured backward-compatible upgrades for plugin execution.
2026-06-07 03:20:04 +08:00

9 lines
248 B
CMake

cmake_minimum_required(VERSION 3.16)
project(cliproxy_protocol_format_c C)
add_library(cliproxy_protocol_format_c SHARED src/plugin.c)
set_target_properties(cliproxy_protocol_format_c PROPERTIES
OUTPUT_NAME "protocol-format-c"
PREFIX ""
)