Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 918 Bytes

README.md

File metadata and controls

57 lines (35 loc) · 918 Bytes

QuantLib VSCode Dev Container

This project contains the tools to build and test QuantLib.

Prerequisites

Ensure you are using VSCode Dev Containers. Open this project in VSCode and select 'Reopen in Container' to start working in the development environment.

Building

To build the project, run the following command:

make

This will fetch the QuantLib library, configure it, and build it.

Installing

To install the built QuantLib library, run:

make install

Running Tests

To run the tests, use the following command:

make test

Cleaning Up

To clean up the build artifacts, run:

make clean

Uninstalling

To uninstall the QuantLib library, run:

make uninstall

Full Cleanup

To perform a full cleanup, including uninstalling and deleting the QuantLib directory, run:

make distclean