fortran-kdtree
fortran-kdtree copied to clipboard
More information about "fortran-kdtree"
Hello, @dongli
Could you offer some instructions about how to install or compile libraries of 'fortran-kdtree' and information about arguments and returns of functions and subroutines?
Hi @WangYun1995 ,
To compile the fortran code you will need the cmake version higher than the one mentioned in the heading of "CmakeLists.txt" installed on your machine. You can simply check by
cmake --version
To compile the library, its rather straightforward and similar to many other cmake builds
git clone <repo_link>
cd fortran-kdtree
cd build
cmake ..
This should help you build the library in the build directory. Hope this helps!