From 7261d12034ce1e6e7ad434ec72dfb4d99e168fd1 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 14 Jul 2023 22:33:20 +0800 Subject: [PATCH] Delete developer_guide.md --- docs/developer_guide.md | 42 ----------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 docs/developer_guide.md diff --git a/docs/developer_guide.md b/docs/developer_guide.md deleted file mode 100644 index 583911db..00000000 --- a/docs/developer_guide.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -icon: book -order: -5 -label: Developer guide ---- - -There are some scripts to help you develop this project. - -## Build scripts - -`build.py` is the main script to build the project. -```bash -# equivalent to `python build.py linux` -python build.py - -# build for linux executable or `.so` library -python build.py linux [-lib] - -# build for windows executable or `.dll` library -python build.py windows [-lib] - -# build for web (wasm) -python build.py web -``` - -## Test scripts - -```bash -# run unit tests -python scripts/run_tests.py - -# run benchmarks -python scripts/run_tests.py benchmarks/ -``` - -## Distribution scripts - -```bash -python amalgamate.py -``` - -It will generate a single `pocketpy.h` and `main.cpp` in `amalgamate/` directory. \ No newline at end of file