mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
dbfeeb71d5
Previously, it would simply output nothing, but it should output an empty string `""`. llvm-svn: 185894
18 lines
458 B
CMake
18 lines
458 B
CMake
add_custom_target(UnitTests)
|
|
set_target_properties(UnitTests PROPERTIES FOLDER "Tests")
|
|
|
|
function(add_llvm_unittest test_dirname)
|
|
add_unittest(UnitTests ${test_dirname} ${ARGN})
|
|
endfunction()
|
|
|
|
add_subdirectory(ADT)
|
|
add_subdirectory(Analysis)
|
|
add_subdirectory(ExecutionEngine)
|
|
add_subdirectory(Bitcode)
|
|
add_subdirectory(Option)
|
|
add_subdirectory(Support)
|
|
add_subdirectory(Transforms)
|
|
add_subdirectory(IR)
|
|
add_subdirectory(DebugInfo)
|
|
add_subdirectory(Object)
|