Skip to content

Commit

Permalink
[CMake] llvm-c-test: Use libLLVM.so if it is available.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221592 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chapuni committed Nov 10, 2014
1 parent 5f3f254 commit 75318bc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tools/llvm-c-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()
Expand All @@ -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()

0 comments on commit 75318bc

Please sign in to comment.