Merge pull request #34698 from kitaisreal/cmake-llvm-add-status-message-if-not-used

CMake llvm add status message if not used
This commit is contained in:
Maksim Kita 2022-02-17 22:48:41 +01:00 committed by GitHub
commit 6f9b436e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ endif()
option (ENABLE_EMBEDDED_COMPILER "Enable support for 'compile_expressions' option for query execution" ${ENABLE_EMBEDDED_COMPILER_DEFAULT}) option (ENABLE_EMBEDDED_COMPILER "Enable support for 'compile_expressions' option for query execution" ${ENABLE_EMBEDDED_COMPILER_DEFAULT})
if (NOT ENABLE_EMBEDDED_COMPILER) if (NOT ENABLE_EMBEDDED_COMPILER)
set (USE_EMBEDDED_COMPILER 0) message(STATUS "Not using LLVM")
return() return()
endif() endif()