mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 04:12:19 +08:00
4fa284dc00
* [luv] add new port libuv bindings for lua * [lua-compat53] add new port * fixup!: bad indentation * refactor: remove superfluous feature desc
16 lines
546 B
Diff
16 lines
546 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index e63a431..163bada 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -65,8 +65,8 @@ endif ()
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
|
|
|
|
if (WITH_SHARED_LIBUV)
|
|
- find_package(Libuv REQUIRED)
|
|
- include_directories(${LIBUV_INCLUDE_DIR})
|
|
+ find_package(libuv CONFIG REQUIRED)
|
|
+ set(LIBUV_LIBRARIES $<IF:$<TARGET_EXISTS:uv_a>,uv_a,uv>)
|
|
else (WITH_SHARED_LIBUV)
|
|
include_directories(deps/libuv/include)
|
|
add_subdirectory(deps/libuv EXCLUDE_FROM_ALL)
|