Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ned14/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-12-29 05:48:34 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2022-01-01 06:11:17 +0300
commit068a0274e31e02ba8a8926b4f17e1208ff034378 (patch)
tree70a5996a2beaba59ad33681a43e34bbd7b4f0f8e /CMakeLists.txt
parent03664acd109fc8e985bad6d30ede758b51bd424c (diff)
ip::resolve(): Implement for Windows and async for Linux.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1110be4c..96d5b479 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -353,6 +353,8 @@ if(LLFIO_FORCE_NETWORKING_OFF)
else()
if(WIN32)
all_link_libraries(PUBLIC ws2_32)
+ else()
+ # all_link_libraries(PUBLIC $<$<PLATFORM_ID:Linux>:anl>) ## LLFIO_IP_ADDRESS_RESOLVER_USE_ASYNC_GETADDRINFO is currently disabled in the source code
endif()
endif()
if(LLFIO_FORCE_MAPPED_FILES_OFF)