Oscar Fuentes | b1f9380 | 2010-10-28 14:38:35 +0000 | [diff] [blame] | 1 | add_custom_target(UnitTests) |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 2 | set_target_properties(UnitTests PROPERTIES FOLDER "Tests") |
Oscar Fuentes | b1f9380 | 2010-10-28 14:38:35 +0000 | [diff] [blame] | 3 | |
Chandler Carruth | a5d42f8 | 2012-06-21 05:16:58 +0000 | [diff] [blame] | 4 | function(add_llvm_unittest test_dirname) |
| 5 | add_unittest(UnitTests ${test_dirname} ${ARGN}) |
| 6 | endfunction() |
Frits van Bommel | 716f34c | 2010-12-07 10:22:07 +0000 | [diff] [blame] | 7 | |
Chandler Carruth | 94d0251 | 2012-06-21 09:51:26 +0000 | [diff] [blame] | 8 | add_subdirectory(ADT) |
| 9 | add_subdirectory(Analysis) |
Chandler Carruth | 94d0251 | 2012-06-21 09:51:26 +0000 | [diff] [blame] | 10 | add_subdirectory(Bitcode) |
Eric Christopher | 25b7adc | 2013-09-03 21:57:57 +0000 | [diff] [blame] | 11 | add_subdirectory(CodeGen) |
Eric Christopher | c2fa3a4 | 2013-09-03 20:51:14 +0000 | [diff] [blame] | 12 | add_subdirectory(DebugInfo) |
| 13 | add_subdirectory(ExecutionEngine) |
| 14 | add_subdirectory(IR) |
Rafael Espindola | bab2afb | 2013-10-16 18:26:16 +0000 | [diff] [blame^] | 15 | add_subdirectory(MC) |
Eric Christopher | c2fa3a4 | 2013-09-03 20:51:14 +0000 | [diff] [blame] | 16 | add_subdirectory(Object) |
Michael J. Spencer | 41ee041 | 2012-12-05 00:29:32 +0000 | [diff] [blame] | 17 | add_subdirectory(Option) |
Chandler Carruth | 94d0251 | 2012-06-21 09:51:26 +0000 | [diff] [blame] | 18 | add_subdirectory(Support) |
| 19 | add_subdirectory(Transforms) |