2013-12-10 11:13:32 +00:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
|
|
BitReader
|
|
|
|
Core
|
|
|
|
MCDisassembler
|
|
|
|
Object
|
|
|
|
Target
|
|
|
|
)
|
2013-10-23 08:10:20 +00:00
|
|
|
|
2014-11-10 15:04:26 +00:00
|
|
|
if(TARGET LLVM)
|
|
|
|
set(LLVM_LINK_COMPONENTS)
|
|
|
|
endif()
|
|
|
|
|
2013-10-23 08:10:20 +00:00
|
|
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
2014-01-08 11:48:19 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wstrict-prototypes")
|
2013-10-23 08:10:20 +00:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
add_llvm_tool(llvm-c-test
|
|
|
|
calc.c
|
|
|
|
disassemble.c
|
|
|
|
helpers.c
|
|
|
|
include-all.c
|
|
|
|
main.c
|
|
|
|
module.c
|
|
|
|
object.c
|
|
|
|
targets.c
|
|
|
|
)
|
2014-11-10 15:04:26 +00:00
|
|
|
|
|
|
|
# Use libLLVM.so if it is available.
|
|
|
|
if(TARGET LLVM)
|
|
|
|
target_link_libraries(llvm-c-test LLVM)
|
|
|
|
endif()
|