Add to your vcpkg.json:
"dependencies": [
"clib-utils-qtr"
]In your CMakeLists.txt:
find_path(ClibUtilsQTR_INCLUDE_DIRS "ClibUtilsQTR/utils.hpp")
target_include_directories(your_target PRIVATE ${ClibUtilsQTR_INCLUDE_DIRS})This is a header-only library; no linking is needed.
To use the CLibUtilsQTR port locally, copy the cmake/ folder from the CLibUtilsQTR repository into your project:
your-project/
└── cmake/
└── ports/
└── clib-utils-qtr/
├── portfile.cmake
└── vcpkg.json