vcpkg/ports/ntf-core/usage
2023-08-31 13:53:07 -07:00

10 lines
355 B
Plaintext

The package ntf-core provides the CMake targets:
# Blocking and non-blocking sockets for network programming
find_package(nts REQUIRED)
target_link_libraries(main PRIVATE nts)
# Asynchronous sockets, timers, event loops, and thread pools for network programming
find_package(ntc REQUIRED)
target_link_libraries(main PRIVATE ntc)