Add parameter len in lua_*_reg
[liba.git] / README.md
blobf0aab5da5aa8fed9a6b2580b2a878cb56d6a19e9
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 # release
127 ```bash
128 luarocks install --server=https://luarocks.org/dev liba # latest
131 ```lua
132 local liba = require("liba")
133 print("version", liba.VERSION)
136 ### Java
138 ```java
139 public class Main {
140     public static void main(String[] args) {
141         System.out.println("version " + liba.VERSION);
142     }
146 ### Rust
148 #### Cargo.toml
150 ```toml
151 [dependencies]
152 liba = { git = "https://github.com/tqfx/liba.git" }
155 #### main.rs
157 ```rs
158 use liba;
159 fn main() {
160     println!("version {}", liba::version());
164 ### Python
166 ```bash
167 pip install liba # release
170 ```bash
171 pip install git+https://github.com/tqfx/liba.git # latest
174 #### main.py
176 ```py
177 import liba
178 print("version", liba.VERSION)
181 ### JavaScript
183 ```bash
184 npm i @tqfx/liba
187 #### index.js
189 ```js
190 import liba from "@tqfx/liba";
191 console.log(liba.VERSION)
194 ### QuickJS
196 #### main.js
198 ```js
199 import * as liba from "liba.so";
200 console.log("version", liba.VERSION)
203 ## Copyright {#copyright}
205 Copyright (C) 2020-present tqfx, All rights reserved.
207 This Source Code Form is subject to the terms of the Mozilla Public
208 License, v. 2.0. If a copy of the MPL was not distributed with this
209 file, You can obtain one at <https://mozilla.org/MPL/2.0/>.