14

我想vcpkg在 Windows 的 CMake 项目中使用,因为我需要boost并且xerces都由这个包管理器处理。

我有以下内容CMakeLists.txt

cmake_minimum_required (VERSION 3.12.0)

project (myproj)

set (CMAKE_PREFIX_PATH ${XERCES_ROOT})
set (Boost_USE_STATIC_LIBS ON)
set (Boost_USE_MULTITHREADED ON)
unset (Boost_INCLUDE_DIR CACHE)
unset (Boost_LIBRARY_DIRS CACHE)

# set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/modules)
find_package (Boost COMPONENTS filesystem regex REQUIRED)
find_package (XercesC CONFIG REQUIRED)

set (CMAKE_INCLUDE_CURRENT_DIR ON)
message (STATUS "binary dir is ${CMAKE_BINARY_DIR}")
include_directories (${CMAKE_BINARY_DIR}/${PROJECT_NAME}/)
include_directories (${CMAKE_CURRENT_SOURCE_DIR}/..)
include_directories (${Boost_INCLUDE_DIRS})
include_directories (${XercesC_INCLUDE_DIRS})

set (PROJECT_SRC
  code.cpp
  )

add_library (${PROJECT_NAME} SHARED ${PROJECT_SRC})
add_dependencies (${PROJECT_NAME} UPDATE_RESOURCES)
target_link_libraries (${PROJECT_NAME} ${Boost_LIBRARIES} XercesC::XercesC)

Boostxerces-c安装了vcpkg. 由于我使用的是 Visual Studio Code,因此我在以下位置设置vcpkg变量settings.json

  "cmake.configureSettings": {
    "CMAKE_TOOLCHAIN_FILE" : "some/path/vcpkg/scripts/buildsystems/vcpkg.cmake",
    "VCPKG_TARGET_TRIPLET": "x64-windows"
  }

当我运行 che CMake 时,我收到以下错误:

[cmake] CMake Error at C:/Program Files/CMake/share/cmake-3.14/Modules/FindBoost.cmake:2132 (message):
[cmake]   Unable to find the requested Boost libraries.
[cmake] 
[cmake]   Unable to find the Boost header files.  Please set BOOST_ROOT to the root
[cmake]   directory containing Boost or BOOST_INCLUDEDIR to the directory containing
[cmake]   Boost's headers.
[cmake] Call Stack (most recent call first):
[cmake]   D:/projects/vcpkg/scripts/buildsystems/vcpkg.cmake:233 (_find_package)
[cmake]   src/myroject/CMakeLists.txt:24 (find_package)
[cmake] 
[cmake] 
[cmake] CMake Error at D:/Projects/vcpkg/installed/x64-windows/share/xercesc/vcpkg-cmake-wrapper.cmake:1 (_find_package):
[cmake]   Could not find a package configuration file provided by "XercesC" with any
[cmake]   of the following names:
[cmake] 
[cmake]     XercesCConfig.cmake
[cmake]     xercesc-config.cmake
[cmake] 
[cmake]   Add the installation prefix of "XercesC" to CMAKE_PREFIX_PATH or set
[cmake]   "XercesC_DIR" to a directory containing one of the above files.  If
[cmake]   "XercesC" provides a separate development package or SDK, be sure it has
[cmake]   been installed.
[cmake] Call Stack (most recent call first):
[cmake]   D:/Projects/vcpkg/scripts/buildsystems/vcpkg.cmake:189 (include)
[cmake]   src/ZLA/CMakeLists.txt:25 (find_package)
[cmake] 
[cmake] 
[cmake] Configuring incomplete, errors occurred!
[cmake] See also "D:/Projects/zla/build/vscode/CMakeFiles/CMakeOutput.log".
[cms-driver] Error during CMake configure: [cmake-server] Configuration failed.

目前我已经安装xerces了 vcpkg 命令,而 boost 当前没有安装,但我期待在执行 cmake 命令期间,vcpkg将下载并构建所需的构建包。

我也试过命令行:

 cmake -DCMAKE_TOOLCHAIN_FILE=D:/Projects/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows ../

但结果是一样的。

我做错了什么?如何成功使用 vcpkg?

4

4 回答 4

8
  1. 您需要预先安装软件包(使用 vcpkg install )。

(然后您可以将工具链指定为 CMake 选项:

-DCMAKE_TOOLCHAIN_FILE=C:\path\to\vcpkg\scripts\buildsystems\vcpkg.cmake

但是如果您已经指定了工具链,例如在交叉编译时,这将不起作用。)

  1. 相反,“包含”它以避免此问题:

在 find_package() 之前将此行添加到项目 CMakeLists.txt 中:

include(/path/to/vcpkg/scripts/buildsystems/vcpkg.cmake)
于 2020-09-30T18:16:05.430 回答
6

boost 当前未安装,但我期待在执行 cmake 命令期间,vcpkg 将下载并构建所需的构建包。

据我所知,情况并非如此。您需要vcpkg预先为您计划使用的三元组安装所需的软件包(即x64-windows)。然后,您需要确保在运行 CMake 时使用了正确的三元组(VCPKG_TARGET_TRIPLET检查CMakeCache.txt. 如果不正确,您可以更改它并使用 CMake 重新配置。

此外,根据您收到的错误输出,xerces使用vcpkg. 您可以vcpkg通过运行检查安装的内容:

vcpkg list --triplet x64-windows

于 2019-04-03T13:56:44.997 回答
5

理论上它很简单(假设 vcpkg 安装在C:/vcpkggithub 操作中);

  1. 安装你的“foo”包vcpkg install foo
  2. 确保您的 CMakeLists.txt 找到并使用该包;
find_package(FOO)
# Use these instead of the package doesn't have proper cmake package support.
# find_path(FOO_INCLUDE_DIRS foo.h)
# find_library(FOO_LIBRARYS foo)
include_directories(${FOO_INCLUDE_DIRS})
target_link_libraries(myprogram ${FOO_LIBRARIES})                                     
  1. 运行 cmake-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake

但是......这对我不起作用,直到我添加--triplet x64-windowsvcpkg install命令中。

DCMAKE_TOOLCHAIN_FILE设置各种变量以CMAKE_(SYSTEM_)?(PREFIX|LIBRARY|INCLUDE|FRAMEWORK)_PATH启用 find_*() cmake 函数,但请注意这些路径包括 VCPKG_TARGET_TRIPLET。在我的情况下,软件包安装vcpkg install <foo>默认为,x86-windows但随后调用 cmake 时-DCMAKE_TOOLCHAIN_FILE=C:/....默认为,x64-windows因此无法找到该软件包。

目前 vcpkg 默认为较旧的 x86 目标,但现代 Visual Studio(由 githup 操作使用)默认为 x64。解决方法是使用vcpkg -triplet x64-windows install <foo>. 我花了很长时间才发现这一点。

于 2021-08-07T01:15:02.890 回答
2

我遇到了同样的问题,只是通过以下方式解决了它:

set(CURL_DIR "C:/Libs/vcpkg/installed/x64-windows/share/curl")

或者

list(APPEND CMAKE_PREFIX_PATH "C:/Libs/vcpkg/packages/curl_x64-windows/share/curl/")

我在C:/Libs下安装了 vcpkg

于 2020-05-25T21:55:58.133 回答