suyu/CMakeModules/FindLLVM.cmake
SylverDiscord51 1648d189d3
Some checks failed
suyu verify / Verify Format (push) Waiting to run
suyu verify / test build (linux-fresh, clang) (push) Blocked by required conditions
suyu verify / test build (linux-fresh, linux) (push) Blocked by required conditions
suyu verify / test build (linux-mingw, windows) (push) Blocked by required conditions
suyu verify / android (push) Blocked by required conditions
suyu-ci / Check REUSE Specification (push) Failing after 12s
codespell / Check for spelling errors (push) Successful in 10s
license-fix (#31)
Co-authored-by: palfaiate <syl.paulo.alfaiate@gmail.com>
Co-authored-by: SylverDiscord51 <p71468162@gmail.com>
Co-committed-by: SylverDiscord51 <p71468162@gmail.com>
2024-03-23 22:58:07 -03:00

28 lines
1.1 KiB
CMake

# SPDX-FileCopyrightText: 2023 Alexandre Bouvier <contact@amb.tf>
# SPDX-FileCopyrightText: 2024 suyu Emulator Project
#
# SPDX-License-Identifier: GPL-3.0-or-later
find_package(LLVM QUIET COMPONENTS CONFIG)
if (LLVM_FOUND)
separate_arguments(LLVM_DEFINITIONS)
if (LLVMDemangle IN_LIST LLVM_AVAILABLE_LIBS)
set(LLVM_Demangle_FOUND TRUE)
endif()
endif()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(LLVM HANDLE_COMPONENTS CONFIG_MODE)
if (LLVM_FOUND AND LLVM_Demangle_FOUND AND NOT TARGET LLVM::Demangle)
add_library(LLVM::Demangle INTERFACE IMPORTED)
target_compile_definitions(LLVM::Demangle INTERFACE ${LLVM_DEFINITIONS})
target_include_directories(LLVM::Demangle INTERFACE ${LLVM_INCLUDE_DIRS})
# prefer shared LLVM: https://github.com/llvm/llvm-project/issues/34593
# but use ugly hack because llvm_config doesn't support interface library
add_library(_dummy_lib SHARED EXCLUDE_FROM_ALL src/suyu/main.cpp)
llvm_config(_dummy_lib USE_SHARED demangle)
get_target_property(LLVM_LIBRARIES _dummy_lib LINK_LIBRARIES)
target_link_libraries(LLVM::Demangle INTERFACE ${LLVM_LIBRARIES})
endif()