lana/docs/snippets/project_structure.md

542 B

Project Structure

  • src/ — Source files (.cpp, .cc, .cxx)
    • lib/ — Shared library sources (mark with shared(true) when needed)
    • tools/ — Tool/executable sources
  • include/ — Public headers
  • build/ — Intermediate object files and dependency dumps
  • bin/ — Final outputs
    • lib/ — Shared libraries (.so/.dll)
    • tools/ — Executables
  • config.ini — Global build configuration
  • README.md — Project overview (generated by Lana)
  • .gitignore — Generated ignore file tuned for Lana projects