mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 10:49:01 +08:00
2588f9a438
- [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. @jll63 I was not sure I could push on your branch so I made the separate PR
27 lines
918 B
Diff
27 lines
918 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index c50fd44..f550c2e 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -15,7 +15,7 @@
|
|
# Find Boost dependency
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
|
|
include(cmake/find_or_download_package.cmake)
|
|
-find_or_download_package(Boost INSTALL_WITH_YOMM)
|
|
+find_package(Boost REQUIRED)
|
|
message(STATUS "Using Boost libraries from ${Boost_INCLUDE_DIRS}")
|
|
|
|
if(NOT ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") AND (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang"))
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index c50fd44..f550c2d 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -73,7 +73,6 @@
|
|
COMMAND ${CMAKE_SOURCE_DIR}/dev/code2md "${readme_cpp}" "${readme_md}"
|
|
DEPENDS "${readme_cpp}")
|
|
endif()
|
|
|
|
-add_subdirectory(docs.in)
|
|
|
|
## Install instruction
|
|
# Create version file for cmake package
|