Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 483 Bytes

File metadata and controls

18 lines (15 loc) · 483 Bytes

Installing LibNTC into your project

Using CMake:

set(LIBNTC_BIN_DIRECTORY "/path/to/your/build/output")
add_subdirectory(path/to/RTXNTC-Library)
target_link_libraries(<target_name> PRIVATE libntc)

Directly:

  • Add RTXNTC-Library/include into the include paths - for the shaders too if implementing Inference on Sample
  • Link libntc.lib
  • Copy libntc.dll and cudart64_12.dll into the deployment location

Include the header:

#include <libntc/ntc.h>