2012-12-19 08:51:07 +08:00
|
|
|
add_custom_target(LLDUnitTests)
|
|
|
|
set_target_properties(LLDUnitTests PROPERTIES FOLDER "lld tests")
|
|
|
|
|
|
|
|
# add_lld_unittest(test_dirname file1.cpp file2.cpp)
|
|
|
|
#
|
|
|
|
# Will compile the list of files together and link against lld
|
|
|
|
# Produces a binary named 'basename(test_dirname)'.
|
|
|
|
function(add_lld_unittest test_dirname)
|
|
|
|
add_unittest(LLDUnitTests ${test_dirname} ${ARGN})
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
support
|
|
|
|
)
|
|
|
|
|
2013-01-15 14:55:25 +08:00
|
|
|
add_lld_unittest(CoreTests
|
|
|
|
RangeTest.cpp
|
|
|
|
)
|