feat: 包含 Kotlin 原始代码和 Rust Windows 桌面版

- flomo-ai/: Android Kotlin 原始项目
- flomo-ai-desktop/: Rust + egui Windows 桌面移植版
  - LLM API 调用、提示词管理、主题切换、配置持久化
  - MinGW 工具链编译,无控制台窗口
This commit is contained in:
xiaji
2026-04-04 17:32:49 +08:00
commit b4908fcc2d
138 changed files with 6815 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
ar = "x86_64-w64-mingw32-gcc-ar"
rustflags = [
"-C", "link-arg=-mwindows",
"-L", "native=C:\\msys64\\mingw64\\lib",
]