Files

19 lines
296 B
Markdown
Raw Permalink 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.
Для сборки без UTF поддержки:
```
mkdir build
cd build
cmake .. && make
```
Для сборки с UTF поддержкой:
```
mkdir build
cd build
cmake .. -DCMAKE_CXX_FLAGS="$(CMAKE_CXX_FLAGS) -DPCRE2_UCP=1" && make
```
Также работает
```
make clean
```