mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 08:28:59 +08:00
10 lines
369 B
Plaintext
10 lines
369 B
Plaintext
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)
|