26 lines
376 B
Markdown
26 lines
376 B
Markdown
# iloveos
|
|
|
|
Simply copying libfuse.
|
|
|
|
|
|
## Branching Rules
|
|
|
|
1. Fork the main branch and work on your own branch.
|
|
2. Test before initiating a Pull Request.
|
|
3. Get approved to get merged.
|
|
|
|
# Quick Start
|
|
|
|
## configure and build code
|
|
make build directory
|
|
```bash
|
|
mkdir -p build && cd build
|
|
cmake ..
|
|
make # cmake --build . is same
|
|
```
|
|
|
|
## run test
|
|
```bash
|
|
./build/test/run_tests
|
|
```
|