hdbscan-cpp icon indicating copy to clipboard operation
hdbscan-cpp copied to clipboard

Add Windows-compatible Makefile for hdbscan-cpp

Open qubitslabs opened this issue 9 months ago • 0 comments

his pull request adds a Makefile.windows for Windows users who want to build the project using g++ (via Git Bash, MSYS2, or MinGW). The original Makefile uses Linux-specific commands (find, rm), which fail on Windows systems.

Changes:

Replaced find with wildcard

Used del instead of rm

Added Makefile.windows instead of modifying the original file to avoid affecting Linux users

qubitslabs avatar May 31 '25 08:05 qubitslabs