From 39779bc8f12200feb8613d37f32c35e70edf9040 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 8 Apr 2009 23:45:22 -0400 Subject: [PATCH] test command depends on the compiler tool. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 876e8a3e..eaf1e93d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -121,7 +121,9 @@ ADD_CUSTOM_TARGET( test COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/unit_tests/run_tests.pl" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" + DEPENDS mojoshader-compiler COMMENT "Running unit tests..." + VERBATIM ) # End of CMakeLists.txt ...