mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 03:59:01 +08:00
18 lines
575 B
Diff
18 lines
575 B
Diff
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index 39ec359..ee90ae6 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -177,10 +177,8 @@ if(Boost_FOUND)
|
||
|
LIST(APPEND OpenMVS_DEFINITIONS -D_USE_BOOST)
|
||
|
ADD_DEFINITIONS(${Boost_DEFINITIONS})
|
||
|
LINK_DIRECTORIES(${Boost_LIBRARY_DIRS})
|
||
|
- if(NOT MSVC AND DEFINED CMAKE_TOOLCHAIN_FILE)
|
||
|
- # work around this missing library link in vcpkg
|
||
|
- LIST(APPEND Boost_LIBRARIES zstd)
|
||
|
- endif()
|
||
|
+ # work around this missing library link in vcpkg
|
||
|
+ LIST(APPEND Boost_LIBRARIES zstd)
|
||
|
SET(_USE_BOOST TRUE)
|
||
|
endif()
|
||
|
|