From 1160236b87f605a35f14e450e723b0a912285c19 Mon Sep 17 00:00:00 2001 From: "Bryce Lelbach (wash)" Date: Wed, 20 Apr 2011 22:29:37 -0500 Subject: [PATCH] CMake: Change check target to libcxx.check to avoid CMake target conflicts. --- test/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 86f94cd0..7f4e2759 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -32,7 +32,7 @@ if(PYTHONINTERP_FOUND) ${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg @ONLY) - add_custom_target(check + add_custom_target(libcxx.check COMMAND ${PYTHON_EXECUTABLE} ${LIT_EXECUTABLE} ${LIT_ARGS} @@ -40,5 +40,5 @@ if(PYTHONINTERP_FOUND) DEPENDS COMMENT "Running libcxx tests") else() - message(WARNING "Could not find Python, no check target will be available!") + message(WARNING "Could not find Python, no libcxx.check target will be available!") endif()