Hi,
I am building SUNDIALS 7.1.1 on Windows using
cmake -G "Ninja" -B .\build\ -DCMAKE_C_COMPILER=icx -DBUILD_FORTRAN_MODULE_INTERFACE=ON -DCMAKE_Fortran_COMPILER=ifx -DBUILD_SHARED_LIBS=OFF
cmake --build .\build
The build completes successfully, but I am not able to locate the .lib files. Am I missing an install step? Could you please advise?
Thank you.
Siva
To unsubscribe from the SUNDIALS-USERS list: write to: mailto:SUNDIALS-USERS-...@LISTSERV.LLNL.GOV
Hi Siva,
You have only built the libraries, not installed them. You will need to run cmake --build .\build --target install to install the libraries.
Cody
Hi Cody,
Thank you for your quick reply. That did the trick.
I am starting to use SUNDIALS (IDA in particular) seriously, and it is time I became more comfortable with cmake.
Thank you again.
Siva