diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2014-04-11 16:33:17 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2014-04-15 13:58:45 -0700 |
commit | 223b61fc6dcac7011fc36e93c3187908c51a0700 (patch) | |
tree | 39f934954349355d50a78830768a6aa7a42ec169 | |
parent | fc354bb9b59bbc8f75c09ee092c9d0896a5fb1f9 (diff) |
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 <baker.dylan.c@gmail.com>
-rw-r--r-- | tests/cl/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |