From 223b61fc6dcac7011fc36e93c3187908c51a0700 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 11 Apr 2014 16:33:17 -0700 Subject: cmake: buld cl with piglit_add_executable insead of add_executable piglit_add_executable is used to actually install the final binary. Without it the final binaries wont be installed with make install. Signed-off-by: Dylan Baker --- tests/cl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cl/CMakeLists.txt b/tests/cl/CMakeLists.txt index 1b1ffc295..b6d3b8d33 100644 --- a/tests/cl/CMakeLists.txt +++ b/tests/cl/CMakeLists.txt @@ -13,7 +13,7 @@ if(PIGLIT_HAS_POSIX_CLOCK_MONOTONIC) endif() function(piglit_cl_add_test) - add_executable(${ARGV}) + piglit_add_executable(${ARGV}) endfunction(piglit_cl_add_test) function(piglit_cl_add_custom_test name) -- cgit v1.2.3