blob: e20af2f2fd330847bcc6d060559154a4b6172942 (
plain)
1
2
3
4
5
6
7
8
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)
|