aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPrzemysław Pawełczyk <przemoc@gmail.com>2023-07-21 09:42:21 +0200
committerGitHub <noreply@github.com>2023-07-21 10:42:21 +0300
commit9cf022a1889e50113fd348dc96b4557fc75a6296 (patch)
tree00c889de01a39f6605d18e85c713c1075348991b /examples
parente782c9e735f93ab4767ffc37462c523b73a17ddc (diff)
make : fix embdinput library and server examples building on MSYS2 (#2235)
* make : fix embdinput library and server examples building on MSYS2 * cmake : fix server example building on MSYS2
Diffstat (limited to 'examples')
-rw-r--r--examples/server/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/server/CMakeLists.txt b/examples/server/CMakeLists.txt
index 812a24b..3782f9b 100644
--- a/examples/server/CMakeLists.txt
+++ b/examples/server/CMakeLists.txt
@@ -7,6 +7,9 @@ target_compile_definitions(${TARGET} PRIVATE
SERVER_VERBOSE=$<BOOL:${LLAMA_SERVER_VERBOSE}>
)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
+if (WIN32)
+ TARGET_LINK_LIBRARIES(${TARGET} PRIVATE ws2_32)
+endif()
target_compile_features(${TARGET} PRIVATE cxx_std_11)
if(TARGET BUILD_INFO)
add_dependencies(${TARGET} BUILD_INFO)