Here you can find the main implementation of REmatch library in C++, and its bindings for both Python and JavaScript/WebAssembly. This version has bee

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-11-18 14:30:07

Here you can find the main implementation of REmatch library in C++, and its bindings for both Python and JavaScript/WebAssembly. This version has been refactorized, tested, and developed for being ready for production. Don't forget to visit our website rematch.cl and the official REmatch Wiki!

After building, the library and binaries will be located in the ./build/Release/ folder. To install the library in your system, run the following command:

IMPORTANT: If you built REmatch as a shared library in Windows, the CMakeLists must also copy the necessary .dll files. This can be done by adding this lines at the end of hello-rematch/CMakeLists.txt:

Assuming that you have the file hello-rematch/main.cpp as the previous section, you can compile it with the following command:

To build REmatch testing executable, turn the BUILD_TESTING variable ON at CMakeLists.txt, and rebuild the project. Then you can run:

Leave a Comment