Skip to content

sciencecorp/libndtp

Repository files navigation

libndtp

C++ implementation and Python bindings for NDTP

Building & Installing

Prerequisites

To build:

git submodule update --init
cd external/microsoft/vcpkg && ./bootstrap-vcpkg.sh && cd -
make all

# or
make clean
make configure
make build

To install

sudo make install

vcpkg

This project is also available as a vcpkg port.

To include this port in your project, add our overlay port repo to your vcpkg configuration (see 'Overlay ports').

Then you will be able to include it in your CMakelists:

science-libndtp provides CMake targets:

  find_package(science-libndtp CONFIG REQUIRED)
  target_link_libraries(main PRIVATE science::libndtp)