Skip to content

Commit

Permalink
WIP: cmake debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mikes-lunarg committed Aug 30, 2024
1 parent fbda054 commit 0ef2c90
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ if (MSVC AND (MSVC_VERSION GREATER_EQUAL "1941") OR
set(COMPILER_SUPPORTS_CXX_MODULES TRUE)
endif()

MESSAGE("MSVC: ${MSVC}")
MESSAGE("MSVC_VERSION: ${MSVC_VERSION}")
MESSAGE("CMAKE_CXX_COMPILER_ID: ${CMAKE_CXX_COMPILER_ID}")
MESSAGE("CMAKE_CXX_COMPILER_VERSION: ${CMAKE_CXX_COMPILER_VERSION}")
MESSAGE("CMAKE_C_COMPILER_FRONTEND_VARIANT: ${CMAKE_C_COMPILER_FRONTEND_VARIANT}")
MESSAGE("CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: ${CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS}")
MESSAGE("COMPILER_SUPPORTS_CXX_MODULES: ${COMPILER_SUPPORTS_CXX_MODULES}")

option(VULKAN_HEADERS_ENABLE_MODULE "Enables building of the Vulkan C++ module. Default is true if supported by the CMake version and compilers" ${COMPILER_SUPPORTS_CXX_MODULES})

if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.28" AND VULKAN_HEADERS_ENABLE_MODULE)
Expand Down

0 comments on commit 0ef2c90

Please sign in to comment.