c++ - Cmake 无法识别 MSVC 编译器

标签 c++ visual-studio-2015 cmake openvr

第一次遇到这个错误。

我正在尝试克隆 openvr并运行 hello opengl 示例,如下 their instructions :

cd samples
mkdir build
cd build
cmake .. -G "Visual Studio 14 2015 Win64" -DCMAKE_PREFIX_PATH=C:/Qt/5.6/msvc2013_64/lib/cmake

我得到:

$ cmake .. -G "Visual Studio 14 2015 Win64" -DCMAKE_PREFIX_PATH=C:/Qt/5.6/msvc20                                                                       13_64/lib/cmake
-- The C compiler identification is MSVC 19.0.24215.1
-- The CXX compiler identification is MSVC 19.0.24215.1
-- Check for working C compiler using: Visual Studio 14 2015 Win64
-- Check for working C compiler using: Visual Studio 14 2015 Win64 -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler using: Visual Studio 14 2015 Win64
-- Check for working CXX compiler using: Visual Studio 14 2015 Win64 -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Compilation set for 64bits architectures.
CMake Warning at CMakeLists.txt:40 (message):
  SDL x64 runtime binaries not provided on Windows.


CMake Error at CMakeLists.txt:98 (message):
  Unsupported compiler.


-- Configuring incomplete, errors occurred!
See also "C:/Users/GBarbieri/Documents/Visual Studio 2015/Projects/openvr/sample                                                                       s/build/CMakeFiles/CMakeOutput.log".

如果我去检查第 98 行:

if(   (${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
   OR (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang"))
  # Better to use the prebuilt GNU preprocessor define __GNUC__,
  # kept for legacy reason with the sample code.
  add_definitions(-DGNUC)

  set(CMAKE_CXX_FLAGS         "${CMAKE_CXX_FLAGS} -std=c++11 -include ${SHARED_SRC_DIR}/compat.h")
  set(CMAKE_CXX_FLAGS_DEBUG   "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wextra -pedantic -g")
  set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")

  # Handles x86 compilation support on x64 arch.
  if(${PLATFORM} MATCHES 32)
    set(CMAKE_CXX_FLAGS        "${CMAKE_CXX_FLAGS} -m32")
    set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
  endif()
elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
  set(CMAKE_CXX_FLAGS         "${CMAKE_CXX_FLAGS} /Za")
  set(CMAKE_CXX_FLAGS_DEBUG   "${CMAKE_CXX_FLAGS_DEBUG} /w2 /DEBUG")
  set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MP /INCREMENTAL:NO")
else()
  message(FATAL_ERROR "Unsupported compiler. ")    // line 98
endif()

它似乎无法匹配“MSVC”..让我尝试一下,让我在这段代码之前添加:

message("${CMAKE_CXX_COMPILER_ID}")
if(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
    message("match")
else()
    message("!match")
endif()

然后它返回:

MSVC
!match
CMake Error at CMakeLists.txt:104 (message):
  Unsupported compiler.

什么?

各位,你们能发现问题所在吗?

最佳答案

好的,正如我在评论中尝试过的那样,正确的答案是使用:

if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")

而不是

if(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")

关于c++ - Cmake 无法识别 MSVC 编译器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41692725/

相关文章:

c++ - 链接静态库

c++ - 错误 : The term 'bootstrap-vcpkg.bat' is not recognized : While Install C and C++ libraries for Visual Studio 2017 on Win10

c++ - 对 `omp_get_num_procs' 的 undefined reference

c++ - 使用 CMake 编译其他外部库(没有 CMakeLists.txt)

c - CMake 中的 LibSodium 依赖项无法在 Docker 容器中解析

c++ - 如何从路径中获取文件名的词干?

visual-studio-2015 - 数据库项目 - 如何设置 DatabaseName 变量

c# - 为什么我的项目引用指向 "obj"目录下的一个dll?

windows-phone-8.1 - 无法将通用应用程序部署到Windows Phone 10技术预览版

自定义 FindXXX 模块无法在 CMake 中工作?