IlyaGrebnov / libsais

libsais is a library for linear time suffix array, longest common prefix array and burrows wheeler transform construction based on induced sorting algorithm.
Apache License 2.0
180 stars 22 forks source link

Makefile missing #16

Closed alebcay closed 1 year ago

alebcay commented 1 year ago

Hello, it looks like the Makefile was deleted in 3847654b17a3123a084f3a3dea375e00355846a8. Is this intentional? Is there a new preferred way to build this library now? Thanks.

IlyaGrebnov commented 1 year ago

Yes, this is intentional. My intent is to make the library available as source code, and I'm not using this makefile since my main development environment is Windows-based.

IlyaGrebnov commented 1 year ago

@alebcay I added CMake file to build library to make it cross platform and verified with MSVC and WSL2.

alebcay commented 1 year ago

Awesome, appreciate it. Thanks for the change.