vcpkg/ports/mosquitto/0002-win64-support.patch
Thomas1664 9f7c4cd4f8
[mosquitto] Update to 2.0.14 (#24271)
* [mosquitto] Update to 2.0.14

* version

* remove tabs

* version
2022-04-21 14:33:08 -07:00

19 lines
684 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2775a3da..ddd81b04 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -67,12 +67,7 @@ option(WITH_THREADING "Include client library threading support?" ON)
if (WITH_THREADING)
add_definitions("-DWITH_THREADING")
if (WIN32)
- if (CMAKE_CL_64)
- set (PTHREAD_LIBRARIES C:\\pthreads\\Pre-built.2\\lib\\x64\\pthreadVC2.lib)
- else (CMAKE_CL_64)
- set (PTHREAD_LIBRARIES C:\\pthreads\\Pre-built.2\\lib\\x86\\pthreadVC2.lib)
- endif (CMAKE_CL_64)
- set (PTHREAD_INCLUDE_DIR C:\\pthreads\\Pre-built.2\\include)
+ find_package(pthread REQUIRED)
elseif (ANDROID)
set (PTHREAD_LIBRARIES "")
set (PTHREAD_INCLUDE_DIR "")