From 465bc476b37574ecdc566cb45b00ed90b842a420 Mon Sep 17 00:00:00 2001 From: mcbarton <150042563+mcbarton@users.noreply.github.com> Date: Sat, 18 May 2024 18:25:43 +0100 Subject: [PATCH] Debug --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 13fd0314b..b5caabd15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -327,6 +327,12 @@ include_directories(BEFORE SYSTEM #Removes flag due to issue with Google test download when LLVM_ENABLE_WERROR=On string(REPLACE "-Wcovered-switch-default" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") +message(CXX_OPTS "${CMAKE_CXX_FLAGS}") +message(MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS}") +message(EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}") +message(SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}") +message(SHARED_LIBRARY_CREATE_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS}") + file(STRINGS "VERSION" CPPINTEROP_VERSION) string(REGEX MATCH "([0-9]*)\.([0-9]*)\.([0-9]*)" CPPINTEROP_VERSION_ONLY "${CPPINTEROP_VERSION}") set(CPPINTEROP_VERSION_MAJOR "${CMAKE_MATCH_1}")