WebDisk_C/README.md
2025-07-03 14:55:35 +03:00

33 lines
1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# WebDisk_C
WebDisk_C это проект который реализовывает функционал Filelight в Web Браузере.
WebDisk_C is a project that implements Filelight functionality in a Web Browser.
------
# Зависимости
## jemalloc
Проект имеет необязательную зависимость [jemalloc](https://github.com/jemalloc/jemalloc.git)
Вы можете его отключить убрав **`-DUSE_JEMALLOC`** и **`jemalloc`** из файла `CMakeLists.txt`
The project has an optional [jemalloc](https://github.com/jemalloc/jemalloc.git) dependency
You can disable it by removing **`-DUSE_JEMALLOC`** and **`jemalloc`** from the file `CMakeLists.txt `
### Сборка/Build **jemalloc**
```bash
git clone https://github.com/jemalloc/jemalloc.git
cd jemalloc
./autogen.sh
mkdir build
cd build
../configure --prefix=$PWD/local --with-jemalloc-prefix=je_
make -j$(nproc)
```
-------
# Сборка Проекта/Building Project
```bash
mkdir build
cd build
cmake ..
make
```