mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
[CMake] llvm-c-test: Use libLLVM.so if it is available.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221592 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5f3f254ed1
commit
75318bcc3c
@ -7,6 +7,10 @@ set(LLVM_LINK_COMPONENTS
|
||||
Target
|
||||
)
|
||||
|
||||
if(TARGET LLVM)
|
||||
set(LLVM_LINK_COMPONENTS)
|
||||
endif()
|
||||
|
||||
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wstrict-prototypes")
|
||||
endif ()
|
||||
@ -21,3 +25,8 @@ add_llvm_tool(llvm-c-test
|
||||
object.c
|
||||
targets.c
|
||||
)
|
||||
|
||||
# Use libLLVM.so if it is available.
|
||||
if(TARGET LLVM)
|
||||
target_link_libraries(llvm-c-test LLVM)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user