Getting Started¶
Installation¶
Using Conan (recommended)¶
Add to your conanfile.txt:
Or conanfile.py:
Header-only (manual)¶
Copy the include/loon directory to your project and add it to your include path.
CMake Integration¶
Requirements¶
- C++23 compatible compiler (GCC 13+, Clang 14+)
- CMake 3.20+
- Conan 2.x (optional, for package management)
Building from Source¶
# Setup Conan (one-time)
make conan-setup
# Install dependencies
make deps
# Build and run tests
make build
# Create and test Conan package
make package