fix: include .pxd,.pxi,.pyi
[liba.git] / README.md
blob206421dbf4dabb61997bcd3d6ab01a44cc5c9e1a
1 # An algorithm library {#mainpage}
3 [![docs](https://github.com/tqfx/liba/actions/workflows/docs.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/docs.yml)
4 [![conan](https://github.com/tqfx/liba/actions/workflows/conan.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/conan.yml)
5 [![xmake](https://github.com/tqfx/liba/actions/workflows/xmake.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/xmake.yml)
6 [![meson](https://github.com/tqfx/liba/actions/workflows/meson.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/meson.yml)
7 [![msvc](https://github.com/tqfx/liba/actions/workflows/msvc.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/msvc.yml)
8 [![linux](https://github.com/tqfx/liba/actions/workflows/linux.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/linux.yml)
9 [![macos](https://github.com/tqfx/liba/actions/workflows/macos.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/macos.yml)
10 [![mingw](https://github.com/tqfx/liba/actions/workflows/mingw.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/mingw.yml)
11 [![msys2](https://github.com/tqfx/liba/actions/workflows/msys2.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/msys2.yml)
12 [![freebsd](https://github.com/tqfx/liba/actions/workflows/freebsd.yml/badge.svg)](https://github.com/tqfx/liba/actions/workflows/freebsd.yml)
14 ## documentation
16 - [C/C++](https://tqfx.org/liba/)
17 - [Lua](https://tqfx.org/liba/lua/)
18 - [Java](https://tqfx.org/liba/java/)
19 - [Rust](https://tqfx.org/liba/rust/liba/)
21 ## required tools
23 - C/C++ compiler: [tcc](https://bellard.org/tcc) or [gnu](https://gcc.gnu.org) or [llvm](https://clang.llvm.org) or [msvc](https://visualstudio.microsoft.com/visual-cpp-build-tools) etc
25 ## optional tools
27 - [lua](https://www.lua.org)
28 - [java](https://www.oracle.com/java)
29 - [rust](https://www.rust-lang.org)
30 - [emsdk](https://emscripten.org)
31 - [xmake](https://xmake.io)
32 - [cmake](https://cmake.org)
33 - [conan](https://conan.io)
34 - [vcpkg](https://vcpkg.io)
35 - [meson](https://mesonbuild.com)
36 - [python](https://www.python.org)
37 - [quickjs](https://github.com/bellard/quickjs)
39 ## build
41 ### xmake
43 ```bash
44 xmake f
45 xmake
46 xmake i
47 ```
49 ### cmake
51 ```bash
52 cmake -S . -B build
53 cmake --build build
54 cmake --install build
55 ```
57 ### meson
59 ```bash
60 meson setup builddir
61 meson install -C builddir
62 ```
64 ### vcpkg
66 ```bash
67 cmake -S . -B build -DLIBA_VCPKG=1
68 ```
70 ```bash
71 cp -r build/vcpkg/* $VCPKG_INSTALLATION_ROOT
72 ```
74 ```pwsh
75 cp -r -Force build/vcpkg/* $ENV:VCPKG_INSTALLATION_ROOT
76 ```
78 ### conan
80 ```bash
81 conan create .
82 ```
84 ### cargo
86 ```bash
87 cargo build --release
88 ```
90 ### cython
92 ```bash
93 python setup.py build_ext --inplace
94 ```
96 ## usage
98 ### C/C++
100 #### xmake.lua
102 ```lua
103 add_requires("a")
106 ### CMakeLists.txt
108 ```cmake
109 find_package(liba CONFIG REQUIRED)
110 target_link_libraries(<TARGET> PRIVATE alib) # static
111 target_link_libraries(<TARGET> PRIVATE liba) # shared
114 #### conanfile.txt
116 ```txt
117 [requires]
118 liba/[~0.1]
121 ### Lua
123 ```bash
124 luarocks install liba
127 ```lua
128 local liba = require("liba")
129 print("version", liba.VERSION)
132 ### Java
134 ```java
135 public class Main {
136     public static void main(String[] args) {
137         System.out.println("version " + liba.VERSION);
138     }
142 ### Rust
144 #### Cargo.toml
146 ```toml
147 [dependencies]
148 liba = { git = "https://github.com/tqfx/liba.git" }
151 #### main.rs
153 ```rs
154 use liba;
155 fn main() {
156     println!("version {}", liba::version());
160 ### Python
162 ```py
163 import liba
164 print("version", liba.VERSION)
167 ### JavaScript
169 ```bash
170 npm i @tqfx/liba
173 ```js
174 import liba from "@tqfx/liba";
175 console.log(liba.VERSION)
178 ### QuickJS
180 ```js
181 import * as liba from "liba.so";
182 console.log("version", liba.VERSION)
185 ## Copyright {#copyright}
187 Copyright (C) 2020-present tqfx, All rights reserved.
189 This Source Code Form is subject to the terms of the Mozilla Public
190 License, v. 2.0. If a copy of the MPL was not distributed with this
191 file, You can obtain one at <https://mozilla.org/MPL/2.0/>.