mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:39:07 +08:00
0de461216d
* move boost out of the toolchain * move icu out of the toolchain * remove CURL from the toolchain (was already unreachable?) * remove gsl from toolchain * remove grpc from toolchain * version stuff * fix indent and missing endif() * version stuff * Revert changes to vcpkg.cmake * push port version * version stuff
11 lines
326 B
CMake
11 lines
326 B
CMake
set(Boost_USE_STATIC_LIBS OFF)
|
|
set(Boost_USE_MULTITHREADED ON)
|
|
unset(Boost_USE_STATIC_RUNTIME)
|
|
set(Boost_NO_BOOST_CMAKE ON)
|
|
unset(Boost_USE_STATIC_RUNTIME CACHE)
|
|
if("${CMAKE_VS_PLATFORM_TOOLSET}" STREQUAL "v120")
|
|
set(Boost_COMPILER "-vc120")
|
|
else()
|
|
set(Boost_COMPILER "-vc140")
|
|
endif()
|
|
_find_package(${ARGS}) |