mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 11:32:43 +01:00
Merge pull request #12986 from mitaclaw/actually-fix-llvm
CMakeLists: Fix LLVM Usage In UICommon
This commit is contained in:
commit
1b808789bc
@ -56,6 +56,7 @@ if(ENABLE_LLVM)
|
|||||||
find_package(LLVM CONFIG)
|
find_package(LLVM CONFIG)
|
||||||
if(LLVM_FOUND)
|
if(LLVM_FOUND)
|
||||||
message(STATUS "LLVM found, enabling LLVM support in disassembler")
|
message(STATUS "LLVM found, enabling LLVM support in disassembler")
|
||||||
|
target_compile_definitions(uicommon PRIVATE HAVE_LLVM)
|
||||||
# Minimal documentation about LLVM's CMake functions is available here:
|
# Minimal documentation about LLVM's CMake functions is available here:
|
||||||
# https://releases.llvm.org/16.0.0/docs/CMake.html#embedding-llvm-in-your-project
|
# https://releases.llvm.org/16.0.0/docs/CMake.html#embedding-llvm-in-your-project
|
||||||
# https://groups.google.com/g/llvm-dev/c/YeEVe7HTasQ?pli=1
|
# https://groups.google.com/g/llvm-dev/c/YeEVe7HTasQ?pli=1
|
||||||
@ -69,6 +70,7 @@ if(ENABLE_LLVM)
|
|||||||
llvm_config(uicommon USE_SHARED
|
llvm_config(uicommon USE_SHARED
|
||||||
mcdisassembler target ${LLVM_EXPAND_COMPONENTS}
|
mcdisassembler target ${LLVM_EXPAND_COMPONENTS}
|
||||||
)
|
)
|
||||||
|
target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS})
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user