diff --git a/example/build_cmake_installed/CMakeLists.txt b/example/build_cmake_installed/CMakeLists.txt index 776595c9a6b..25a5ea8343f 100644 --- a/example/build_cmake_installed/CMakeLists.txt +++ b/example/build_cmake_installed/CMakeLists.txt @@ -7,3 +7,7 @@ find_package(Kokkos REQUIRED) add_executable(cmake_example cmake_example.cpp) target_link_libraries(cmake_example PUBLIC Kokkos::kokkos) + +#Lines below needed for CI testing +enable_testing() +add_test(NAME KokkosInTree_Verify COMMAND example 10)