diff options
Diffstat (limited to 'vcpkg/ports/ntf-core/usage')
| -rw-r--r-- | vcpkg/ports/ntf-core/usage | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vcpkg/ports/ntf-core/usage b/vcpkg/ports/ntf-core/usage new file mode 100644 index 0000000..e20af2f --- /dev/null +++ b/vcpkg/ports/ntf-core/usage @@ -0,0 +1,9 @@ +The package ntf-core provides the CMake targets: + + # Blocking and non-blocking sockets for network programming + find_package(nts CONFIG REQUIRED) + target_link_libraries(main PRIVATE nts) + + # Asynchronous sockets, timers, event loops, and thread pools for network programming + find_package(ntc CONFIG REQUIRED) + target_link_libraries(main PRIVATE ntc) |