mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-24 01:58:21 +00:00
3582242aa3
Similarly to what was done in r280791 for llvm/. This should fix a bunch of failures I saw while trying a BUILD_SHARED_LIBS build on MacOS. Still there are some failures, but this is a step forward. Thanks a lot to Chris Bieneman for the suggested fix (in PR30345) llvm-svn: 281256
18 lines
566 B
CMake
18 lines
566 B
CMake
add_custom_target(LLDUnitTests)
|
|
set_target_properties(LLDUnitTests PROPERTIES FOLDER "lld tests")
|
|
|
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH OFF)
|
|
|
|
# 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})
|
|
target_link_libraries(${test_dirname} ${LLVM_COMMON_LIBS})
|
|
endfunction()
|
|
|
|
add_subdirectory(CoreTests)
|
|
add_subdirectory(DriverTests)
|
|
add_subdirectory(MachOTests)
|