This project contains the tools to build and test QuantLib.
Ensure you are using VSCode Dev Containers. Open this project in VSCode and select 'Reopen in Container' to start working in the development environment.
To build the project, run the following command:
make
This will fetch the QuantLib library, configure it, and build it.
To install the built QuantLib library, run:
make install
To run the tests, use the following command:
make test
To clean up the build artifacts, run:
make clean
To uninstall the QuantLib library, run:
make uninstall
To perform a full cleanup, including uninstalling and deleting the QuantLib directory, run:
make distclean