tvercaut / LSQR-cpp

This is a c++ port initially performed by Luis Ibanez of the LSQR library of Chris Paige and Michael Saunders. The same methodology was applied to the LSMR library of David Fong and Michael Saunders.
BSD 3-Clause "New" or "Revised" License
20 stars 4 forks source link

how to compile the code on mac os x #4

Closed thegodone closed 7 years ago

thegodone commented 7 years ago

On the terminal a make do nothing. Any idea how I can compile the code ?

tvercaut commented 7 years ago

The project uses cmake as a build process manager. Please have a look at the corresponding documentation. You basically need to run:

mkdir <build-directory>
cd <build-directory>
ccmake <source-directory>
make

This is after having installed cmake.