1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Update CMakeLists.txt

Fixed LLVM link issues
This commit is contained in:
M0N7Y5 2024-07-18 13:35:49 +02:00 committed by GitHub
parent 45a5978611
commit a66a9a1acb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,7 +177,8 @@ if (LLVM_FOUND)
include_directories(${LLVM_INCLUDE_DIRS})
add_definitions(${LLVM_DEFINITIONS})
set(STRIP ${TARGET_LIBS_OS} "-lLLVM-18 ${LLVM_SYSTEM_LIBS}")
string(APPEND TARGET_LIBS_OS "-lLLVM-18 ${LLVM_SYSTEM_LIBS}")
string(STRIP ${TARGET_LIBS_OS} TARGET_LIBS_OS)
else()
message(FATAL_ERROR "LLVM not found")
endif()