From 50e0160ec26d4ab560c21a8f3125332af5ec7c6f Mon Sep 17 00:00:00 2001 From: tor <85887826+t0r-onion@users.noreply.github.com> Date: Sun, 26 May 2024 12:07:14 -0500 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8936a85..a566693 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,3 +11,7 @@ include_directories(${CMAKE_SOURCE_DIR}/ext) set(EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/tanzanite-run) add_executable(Tanzanite ${PROJECT_SOURCE_FILES} ${RESOURCE_FILES}) + +if(WIN32) + target_link_libraries(Tanzanite PRIVATE ws2_32) +endif()