c++ - Vcpkg 无法在带有 mingw 的 Windows 上运行

标签 c++ cmake c++17 vulkan vcpkg

我实际上正在尝试使用 cmake 和 MinGW 来制作 vcpkg 在 Windows 上工作,但似乎他不想使用 MinGW

这是错误:

-- Running vcpkg install - done
-- The C compiler identification is GNU 8.1.0
-- The CXX compiler identification is GNU 8.1.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
CMake Error at vcpkg/scripts/buildsystems/vcpkg.cmake:771 (_find_package):
  Could not find a configuration file for package "glfw3" that is compatible
  with requested version "".

  The following configuration files were considered but not accepted:

    C:/Users/ErikT/Desktop/ManiaEngine/build/vcpkg_installed/x64-windows/share/glfw3/glfw3Config.cmake, version: 3.3.4 (64bit)

Call Stack (most recent call first):
  CMakeLists.txt:7 (find_package)

这是我的 cmake

cmake_minimum_required(VERSION 3.20)
project(ManiaEngine)

SET(CMAKE_CXX_STANDARD 17)

## Find dependencies
find_package(glfw3 REQUIRED)
find_package(glm REQUIRED)
find_package(Vulkan REQUIRED)


## Create ManiaEngine executable
add_executable(ManiaEngine 
    source/Launch.cpp
    source/Window.cpp
    )

target_include_directories(ManiaEngine 
  PRIVATE 
    "${CMAKE_CURRENT_LIST_DIR}/source"
)

target_link_libraries(
  ManiaEngine
  PRIVATE
    glfw
    glm::glm
    Vulkan::Vulkan
)

我使用 CMakePresets 与 vcpkg 进行编译:

{
    "version": 2,
    "cmakeMinimumRequired": {
      "major": 3,
      "minor": 20,
      "patch": 0
    },
    "configurePresets": [
        {
            "name": "unix",
            "displayName": "Default Config",
            "description": "Default build using Make and vcpkg",
            "generator": "Unix Makefiles",
            "binaryDir": "${sourceDir}/build",
            "cacheVariables": {
                "CMAKE_BUILD_TYPE": "Release",
                "CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
            }
        },
            {
            "name": "msvc",
            "displayName": "Default MSVC",
            "description": "Default build using Visual Studio and vcpkg",
            "generator": "Visual Studio 16 2019",
            "binaryDir": "${sourceDir}/build",
            "cacheVariables": {
            "CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
            } 
        },
        {
            "name": "mingw",
            "displayName": "Default MinGW",
            "description": "Default build using MinGW and vcpkg",
            "generator": "MinGW Makefiles",
            "binaryDir": "${sourceDir}/build",
            "cacheVariables": {
            "CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
            } 
        }   
    ]
}

对于项目的规范,安装了vulkan SDK,我使用CMAKE 20.05,github上最新的VCPKG项目。除了 VULKAN 之外,我的所有库都是该项目的子模块,并且我安装了 Visual Studio 构建工具 2019。

我不想使用 Visual Studio,这就是我使用 mingw 作为生成器的原因。

如果您需要有关该项目的更多信息,可以在 github 上找到:

https://github.com/real2k/ManiaEngine

提前致谢

最佳答案

您需要通过以下变量告诉 vcpkg 使用哪个三元组:

export VCPKG_DEFAULT_TRIPLET=x64-mingw-dynamic
export VCPKG_DEFAULT_HOST_TRIPLET=x64-mingw-dynamic

这些也可以在您的预设中进行设置。

在 vcpkg 文档中查看更多信息:https://github.com/microsoft/vcpkg/blob/master/docs/users/mingw.md

关于c++ - Vcpkg 无法在带有 mingw 的 Windows 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68144821/

相关文章:

windows - 在 Windows 7 64 位上使用 MinGW gcc/g++ 编译 openCV 2.3.1 程序

c++ - Visual Studio 2017、Boost 和 CMake 的版本号

android - 在运行时加载多个共享库在 Android 中不起作用

c++ - 默认模板参数中的 lambda 是否被视为直接上下文的一部分?

c++ - 结构化绑定(bind)宽度

c++ - 如何为 UWP C++/WinRT 应用程序创建 "suitable await_ready function"?

c++ - 当 QObject 被销毁时,Qt 可以安排将 QObject* 设置为 nullptr 吗?

c++ - 如何在我的 cmake 项目中包含另一个 cmake 项目的头文件?

c++ - 大数组上的段错误

没有模板参数的 C++ 模板?