mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 23:45:25 +08:00
[flang] Add Clang CMake modules path for Decimal library
This fixes an error that clang_target_link_libraries is unknown when building the Decimal library standalone--this is the same as D149090, just for the Decimal library (vs the runtime). I was still seeing this error for the Decimal library and didn't see a corresponding patch--apologies in advance if I missed one or if this is a duplicate! Differential Revision: https://reviews.llvm.org/D149277
This commit is contained in:
@@ -11,6 +11,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||
|
||||
set(LLVM_COMMON_CMAKE_UTILS "${FLANG_SOURCE_DIR}/../cmake")
|
||||
set(LLVM_CMAKE_UTILS "${FLANG_SOURCE_DIR}/../llvm/cmake")
|
||||
set(CLANG_CMAKE_UTILS "${FLANG_SOURCE_DIR}/../clang/cmake")
|
||||
|
||||
# Add path for custom modules
|
||||
list(INSERT CMAKE_MODULE_PATH 0
|
||||
@@ -20,8 +21,10 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||
"${LLVM_COMMON_CMAKE_UTILS}/Modules"
|
||||
"${LLVM_CMAKE_UTILS}"
|
||||
"${LLVM_CMAKE_UTILS}/modules"
|
||||
"${CLANG_CMAKE_UTILS}/modules"
|
||||
)
|
||||
|
||||
include(AddClang)
|
||||
include(AddLLVM)
|
||||
include(AddFlang)
|
||||
include(HandleLLVMOptions)
|
||||
|
||||
Reference in New Issue
Block a user