mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-11 04:06:20 +00:00
![Edwin Vane](/assets/img/avatar_default.png)
Added support to CMake and autoconf for unit tests in clang-tools-extra. A dummy test exists for now until more meaningful tests can be written. llvm-svn: 178661
9 lines
275 B
CMake
9 lines
275 B
CMake
add_custom_target(ExtraToolsUnitTests)
|
|
set_target_properties(ExtraToolsUnitTests PROPERTIES FOLDER "Extra Tools Unit Tests")
|
|
|
|
function(add_extra_unittest test_dirname)
|
|
add_unittest(ExtraToolsUnitTests ${test_dirname} ${ARGN})
|
|
endfunction()
|
|
|
|
add_subdirectory(cpp11-migrate)
|